mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-18 23:46:37 +08:00
11 lines
274 B
C#
11 lines
274 B
C#
namespace Yi.Furion.Core.App.Dtos.Trends
|
|
{
|
|
public class TrendsUpdateInputVo
|
|
{
|
|
public string? Title { get; set; }
|
|
public string? Content { get; set; }
|
|
public string? Remark { get; set; }
|
|
public List<long>? Images { get; set; }
|
|
}
|
|
}
|