using System.ComponentModel.DataAnnotations; namespace LaDOSE.Entity { /// /// A role a user can hold, stored in the pre-existing applicationrole table. /// Rows are reference data seeded by Sql/2026-08-05_roles.sql, not created at runtime. /// public class ApplicationRole { public int Id { get; set; } [Required] [MaxLength(50)] public string Name { get; set; } } }