30 lines
843 B
C#
30 lines
843 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Powiadomienie
|
|
{
|
|
public Powiadomienie()
|
|
{
|
|
PowiadomienieParams = new HashSet<PowiadomienieParam>();
|
|
}
|
|
|
|
public decimal PowiadomienieId { get; set; }
|
|
public string ShopNo { get; set; }
|
|
public string PosNo { get; set; }
|
|
public string Adresat { get; set; }
|
|
public string Nadawca { get; set; }
|
|
public string Naglowek { get; set; }
|
|
public string Tresc { get; set; }
|
|
public short Typ { get; set; }
|
|
public short Status { get; set; }
|
|
public short Kategoria { get; set; }
|
|
public DateTime Utworzono { get; set; }
|
|
public DateTime Zmiana { get; set; }
|
|
public short Aktywny { get; set; }
|
|
|
|
public virtual ICollection<PowiadomienieParam> PowiadomienieParams { get; set; }
|
|
} |