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

12 lines
325 B
C#

namespace Pcm.Db.Entities;
public class SklepZdarzOsOpi
{
public decimal SklepId { get; set; }
public decimal SklepKontrId { get; set; }
public string Kiedy { get; set; }
public short Znaczenie { get; set; }
public string Tekst { get; set; }
public virtual SklepZdarzO SklepZdarzO { get; set; }
}