using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace PARR.Domain.Entities { /// /// Уровень логов работы робота /// [Table("RobotHistoryLevels")] public class RobotHistoryLevel { [Key] public int Level { get; set; } public required string Name { get; set; } public required string Description { get; set; } public ICollection RobotHistories { get; set; } = new HashSet(); } }