Files
Yi.Admin/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application.Contracts/Dtos/Banner/BannerCreateInputVo.cs

13 lines
310 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Banner
2023-04-15 22:44:33 +08:00
{
/// <summary>
/// Banner输入创建对象
/// </summary>
public class BannerCreateInputVo
{
public string Name { get; set; }
2023-04-20 23:08:21 +08:00
public string? Logo { get; set; }
public string? Color { get; set; }
2023-04-15 22:44:33 +08:00
}
}