You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/ViewModels/Extend/Ghre_CertificateControl.cs

14 lines
386 B

namespace Tiobon.Core.Model;
public class Ghre_CertificateControl
{
public string groupName { get; set; }
public List<Ghre_CertificateControlItem> groupList { get; set; } = new List<Ghre_CertificateControlItem>();
}
public class Ghre_CertificateControlItem
{
public string label { get; set; }
public string field { get; set; }
public string type { get; set; }
}