using Microsoft.EntityFrameworkCore; using PARR.Domain.Constants; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace PARR.Domain.Entities.RobotEntities { [Table("Robots", Schema = DatabaseSchemas.Robot)] [Index(nameof(Name), IsUnique = true)] public class Robot { [Key] public int Code { get; set; } public required string Name { get; set; } public required string Description { get; set; } public ICollection RobotConfigurations { get; set; } = new HashSet(); public ICollection ConfigurationSnapshots { get; set; } = new HashSet(); } }