14 lines
284 B
C#
14 lines
284 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demo_2023.Models;
|
|||
|
|
|||
|
public partial class Role
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Name { get; set; } = null!;
|
|||
|
|
|||
|
public virtual ICollection<Client> Clients { get; set; } = new List<Client>();
|
|||
|
}
|