DRAB/Pcm.Db/Entities/Lotnisko.cs
2025-07-11 00:18:14 +02:00

16 lines
361 B
C#

using System;
#nullable disable
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; }
}