12 lines
262 B
C#
Raw Normal View History

2024-05-16 13:30:30 +08:00
using System.Collections.Generic;
2024-07-01 16:04:10 +08:00
namespace DOAN.Model.System.Dto
2024-05-16 13:30:30 +08:00
{
public class SysdictDataDto
{
public string DictType { get; set; }
public string ColumnName { get; set; }
public List<SysDictData> List { get; set; }
}
}