using System.Collections.Generic; namespace UnivateProperties_API.Containers.Property { public class Group { #region Properties public string Name { get; set; } public List Fields { get; set; } #endregion } }