using System.Xml.Serialization; namespace Domain.XML_Model { [Serializable] [XmlRoot(ElementName = "sousmondes")] public class Sousmonde : BaseEntity { [XmlAttribute(AttributeName = "id")] public string Id { get; set; } [XmlAttribute(AttributeName = "nom")] public string? Nom { get; set; } [XmlAttribute(AttributeName = "type_monde")] public string? TypeMonde { get; set; } [XmlAttribute(AttributeName = "seuil_min")] public int SeuilMin { get; set; } [XmlAttribute(AttributeName = "seuil_max")] public int SeuilMax { get; set; } [XmlAttribute(AttributeName = "description")] public string? Description { get; set; } [XmlIgnoreAttribute] public int SousmondeId { get; set; } } }