16 lines
364 B
C#
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>();
|
|
}
|