DRAB/Pcm.Db/Entities/Notatki.cs
2025-07-11 10:50:46 +02:00

11 lines
260 B
C#

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; }
}