13 lines
279 B
C#
13 lines
279 B
C#
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Notatki
|
|
{
|
|
public decimal TowId { get; set; }
|
|
public short Kolejnosc { get; set; }
|
|
public string Tekst { get; set; }
|
|
public short KoniecLinii { get; set; }
|
|
|
|
public virtual Towar Tow { get; set; }
|
|
} |