using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace PARR.Domain.Entities { [Table("AgentHistoryLevels")] public class AgentHistoryLevel { [Key] public int Id { get; set; } public required string Name { get; set; } public required string Description { get; set; } public ICollection AgentHistories { get; set; } = new HashSet(); } }