using System.Collections.Generic; namespace DispenserUI.Models.VO; public class ConfigGroupVO { public string GroupCode { get; set; } public string GroupName { get; set; } public bool Enable { get; set; } = true; public List Definitions { get; set; } }