using System.Collections.Generic; using System.Xml.Serialization; namespace Kreta.Web.Areas.Alkalmazott.Models { [XmlRoot(ElementName = "Alkalmazottak")] public class AlkalmazottXml { public AlkalmazottXml() { Ids = new List(); } [XmlArray(ElementName = "IdLista")] [XmlArrayItem("Id", Type = typeof(int))] public List Ids { get; set; } } }