20 lines
406 B
C#
20 lines
406 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!;
|
|
}
|