mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
34 lines
931 B
C#
34 lines
931 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Furion.Core.Bbs.Enums;
|
|
|
|
namespace Yi.Furion.Core.Bbs.Dtos.Discuss
|
|
{
|
|
/// <summary>
|
|
/// Discuss输入创建对象
|
|
/// </summary>
|
|
public class DiscussCreateInputVo
|
|
{
|
|
public string Title { get; set; }
|
|
public string? Types { get; set; }
|
|
public string? Introduction { get; set; }
|
|
public DateTime? CreateTime { get; set; } = DateTime.Now;
|
|
public string Content { get; set; }
|
|
public string? Color { get; set; }
|
|
|
|
public long PlateId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认公开
|
|
/// </summary>
|
|
public DiscussPermissionTypeEnum PermissionType { get; set; } = DiscussPermissionTypeEnum.Public;
|
|
/// <summary>
|
|
/// 封面
|
|
/// </summary>
|
|
public string? Cover { get; set; }
|
|
}
|
|
}
|