mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-11 04:00:50 +08:00
19 lines
407 B
C#
19 lines
407 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Furion.Core.Bbs.Dtos.Banner
|
|
{
|
|
/// <summary>
|
|
/// Banner输入创建对象
|
|
/// </summary>
|
|
public class BannerCreateInputVo
|
|
{
|
|
public string Name { get; set; }
|
|
public string? Logo { get; set; }
|
|
public string? Color { get; set; }
|
|
}
|
|
}
|