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

12 lines
327 B
C#

namespace Pcm.Db.Entities;
public class Lotnisko
{
public decimal LotnId { get; set; }
public string Kod { get; set; }
public short Aktywny { get; set; }
public DateTime Zmiana { get; set; }
public short DutyFree { get; set; }
public string Nazwa { get; set; }
public string Kraj { get; set; }
}