26 lines
504 B
C#
26 lines
504 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Crm.Domain.Dto
|
|
{
|
|
public class UserTableFieldSettingDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public bool Checkbox { get; set; }
|
|
|
|
public string? Field { get; set; }
|
|
|
|
public string? Title { get; set; }
|
|
|
|
public string? Fixed { get; set; }
|
|
|
|
public int Order { get; set; }
|
|
|
|
public bool IsSetting { get; set; }
|
|
}
|
|
}
|