18 lines
361 B
C#
18 lines
361 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 CreateOrUpdateUserSettingDto
|
|
{
|
|
public string? Module { get; set; }
|
|
|
|
public int? Eid { get; set; }
|
|
|
|
public List<UserTableFieldSettingDto>? Data { get; set; }
|
|
}
|
|
}
|