16 lines
361 B
C#
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; }
|
|
} |