14 lines
344 B
C#
14 lines
344 B
C#
#nullable disable
|
|
|
|
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; }
|
|
} |