using System.Collections.Generic; namespace Interfaces { public class IdentifierList { public IdentifierList() { data = new List(); } public List data { get; set; } } }