2026-04-15 09:35:03 +10:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
2026-04-30 10:35:31 +10:00
|
|
|
|
namespace PARR.Domain.Entities.Removed
|
2026-04-15 09:35:03 +10:00
|
|
|
|
{
|
|
|
|
|
|
//[Table("ResponseAreas")]
|
|
|
|
|
|
//public class ResponseArea
|
|
|
|
|
|
//{
|
|
|
|
|
|
// [Key]
|
|
|
|
|
|
// public int Code { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
// [Required]
|
|
|
|
|
|
// public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
// public ICollection<Host> Hosts { get; set; } = new HashSet<Host>();
|
|
|
|
|
|
|
|
|
|
|
|
// public ICollection<WorkGroup> WorkGroups { get; set; } = new HashSet<WorkGroup>();
|
|
|
|
|
|
//}
|
|
|
|
|
|
}
|