Files
Yi.Admin/Yi.Framework/Yi.Framework.DTOModel/SettingDto.cs

17 lines
402 B
C#
Raw Normal View History

2021-11-03 15:32:45 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.DTOModel
{
public class SettingDto
{
2021-11-03 18:26:13 +08:00
public string InitIcon_key { get; set; }
public string InitRole_key { get; set; }
public string Title_key { get; set; }
public List<string> ImageList_key { get; set; }
2021-11-03 15:32:45 +08:00
}
}