2023-09-25 15:32:22 +10:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.DAL.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
[Table("EkStatuses")]
|
|
|
|
|
|
public class EkStatus
|
|
|
|
|
|
{
|
|
|
|
|
|
[Key]
|
|
|
|
|
|
public int Code { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public ICollection<Host> Hosts { get; set; } = new HashSet<Host>();
|
2024-09-09 10:08:07 +10:00
|
|
|
|
|
2025-12-05 14:07:48 +10:00
|
|
|
|
//public ICollection<JobAutoControlInEkStatus> JobAutoControlInEkStatuses { get; set; } = new HashSet<JobAutoControlInEkStatus>();
|
2023-09-25 15:32:22 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|