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