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

14 lines
290 B
C#

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; }
}