DRAB/Pcm.Db/Entities/Notatki.cs
2025-07-11 00:18:14 +02:00

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