2024-05-16 10:37:44 +02:00

16 lines
317 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PowiazanieUz
{
public decimal UzId { get; set; }
public short RodzajPow { get; set; }
public decimal Id { get; set; }
public virtual Uzytkownik Uz { get; set; } = null!;
}