Files
FKGees/Blink.Backoffice.Services.PcmDb/Entities/Ulica.cs
2026-05-19 16:45:53 +02:00

20 lines
419 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Ulica
{
public decimal UlId { get; set; }
public decimal MId { get; set; }
public string Nazwa { get; set; } = null!;
public short Aktywny { get; set; }
public DateTime Zmiana { get; set; }
public virtual Miasto MIdNavigation { get; set; } = null!;
}