16 lines
333 B
C#
16 lines
333 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class GrupaUz
|
|
{
|
|
public decimal UzId { get; set; }
|
|
|
|
public decimal RolaId { get; set; }
|
|
|
|
public virtual Uzytkownik Rola { get; set; } = null!;
|
|
|
|
public virtual Uzytkownik Uz { get; set; } = null!;
|
|
}
|