namespace UnivateProperties_API.Containers.Property
{
    public class GroupFields
    {
        #region Properties
        public int ID { get; set; }
        public string Name { get; set; }
        public string Type { get; set; }
        public string Value { get; set; }                        
        public int ItemID { get; set; }
        #endregion
    }
}