using System; #nullable disable namespace Pcm.Db.Entities; public class LiniaLotnicza { public decimal LiniaId { get; set; } public string Kod { get; set; } public short Aktywny { get; set; } public DateTime Zmiana { get; set; } public string Nazwa { get; set; } }