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.
19 lines
444 B
19 lines
444 B
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; }
|
|
}
|
|
|
|
|
|
|