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/Tiobon.Core.Model/ViewModels/Extend/ResumeTemplateGroupColumn.cs

30 lines
688 B

using Tiobon.Core.Model.Models;
namespace Tiobon.Core.Model.ViewModels.Extend;
public class ResumeViewTab
{
public string MenuName { get; set; }
public string TabName { get; set; }
public string QueryUrl { get; set; }
public int Count { get; set; }
public List<ResumeViewTabItem> Items { get; set; }
}
public class ResumeViewTabItem
{
public string ItemName { get; set; }
public string Key { get; set; }
public int Count { get; set; }
}
public class ResumeCondition
{
public string Key { get; set; }
public string Name { get; set; }
public string ParaMasterNo { get; set; }
public Dictionary<string, string> Items { get; set; }
}