feat: 数据库迁移

This commit is contained in:
橙子
2023-10-07 17:51:05 +08:00
parent ca5697fb9c
commit c271f3005a
68 changed files with 222 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
namespace Yi.Furion.Core.App.Dtos.Trends
{
/// <summary>
/// Trends输入创建对象
/// </summary>
public class TrendsCreateInput
{
public string Title { get; set; }
public string Content { get; set; }
public string? Remark { get; set; }
public List<long>? Images { get; set; }
}
}