using System.Collections.Generic; namespace DR.FV2016.Web.Models.Constituency { public class GreaterConstituency { public int Id { get; set; } public string Name { get; set; } public string Slug { get; set; } public List Constituencies { get; set; } public GreaterConstituency() { Constituencies = new List(); } } }