init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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<int>();
|
||||
}
|
||||
|
||||
[XmlArray(ElementName = "IdLista")]
|
||||
[XmlArrayItem("Id", Type = typeof(int))]
|
||||
public List<int> Ids { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user