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.
12 lines
390 B
12 lines
390 B
namespace Tiobon.Core.Model.ViewModels.Extend;
|
|
|
|
public class ResumeTemplateColumnMove
|
|
{
|
|
public long ResumeInfoColumnID { get; set; }
|
|
public string ResumeInfoColumnName { get; set; }
|
|
public int SortNo { get; set; }
|
|
public int IsBuildIn { get; set; }
|
|
public int IsRequired { get; set; }
|
|
public int Removable { get; set; }
|
|
public int DisplayType { get; set; }
|
|
}
|
|
|