mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-13 21:16:38 +08:00
19 lines
394 B
C#
19 lines
394 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Furion.Core.Bbs.Dtos.Plate
|
|
{
|
|
public class PlateUpdateInputVo
|
|
{
|
|
|
|
public long Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Logo { get; set; }
|
|
public string Introduction { get; set; }
|
|
}
|
|
}
|