20 lines
479 B
C#
20 lines
479 B
C#
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<AgentHistory> AgentHistories { get; set; } = new HashSet<AgentHistory>();
|
|
}
|
|
}
|