BlagodatBogDat/blagodat/Models/Role.cs
2025-03-11 00:15:26 +03:00

16 lines
364 B
C#

using System;
using System.Collections.Generic;
namespace blagodat.Models;
public partial class Role
{
public int Id { get; set; }
public string RoleName { get; set; } = null!;
public virtual ICollection<Client> Clients { get; set; } = new List<Client>();
public virtual ICollection<Employe> Employes { get; set; } = new List<Employe>();
}