Dispenser/DispenserUI/Models/VO/ConfigGroupVO.cs

13 lines
286 B
C#
Raw Permalink Normal View History

2024-08-16 07:20:09 +00:00
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<DefinitionVO> Definitions { get; set; }
}