Role.cs 282 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Acosta.Models;
  4. public partial class Role
  5. {
  6. public int Roleid { get; set; }
  7. public string Title { get; set; } = null!;
  8. public virtual ICollection<Employee> Employees { get; set; } = new List<Employee>();
  9. }