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

17 lines
386 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
{
public string InitIcon { get; set; }
public string InitRole { get; set; }
public string Title { get; set; }
public List<string> ImageList { get; set; }
2021-11-03 15:32:45 +08:00
}
}