demo2023/demo_2023/Models/Role.cs

14 lines
284 B
C#
Raw Permalink Normal View History

2025-01-28 12:37:06 +00:00
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>();
}