using System.Collections.Generic;

namespace UnivateProperties_API.Containers.Property
{
    public class Group
    {
        #region Properties
        public string Name { get; set; }
        public List<GroupFields> Fields { get; set; }
        #endregion
    }
}