2023-12-11 09:55:12 +08:00
|
|
|
|
using Yi.Framework.Bbs.Domain.Shared.Enums;
|
2023-04-15 22:44:33 +08:00
|
|
|
|
|
2023-12-11 09:55:12 +08:00
|
|
|
|
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss
|
2023-04-15 22:44:33 +08:00
|
|
|
|
{
|
|
|
|
|
|
public class DiscussUpdateInputVo
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Title { get; set; }
|
2023-04-20 23:08:21 +08:00
|
|
|
|
public string? Types { get; set; }
|
|
|
|
|
|
public string? Introduction { get; set; }
|
2023-04-15 22:44:33 +08:00
|
|
|
|
public string Content { get; set; }
|
2023-04-20 23:08:21 +08:00
|
|
|
|
public string? Color { get; set; }
|
2023-04-15 22:44:33 +08:00
|
|
|
|
|
2023-12-14 22:57:01 +08:00
|
|
|
|
public List<Guid>? PermissionUserIds { get; set; }
|
2023-04-15 22:44:33 +08:00
|
|
|
|
|
|
|
|
|
|
public DiscussPermissionTypeEnum PermissionType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// <20><><EFBFBD><EFBFBD>
|
|
|
|
|
|
/// </summary>
|
2023-04-20 23:08:21 +08:00
|
|
|
|
public string? Cover { get; set; }
|
2023-12-18 23:15:13 +08:00
|
|
|
|
|
|
|
|
|
|
public int OrderNum { get; set; }
|
2023-12-19 13:05:03 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// <20>Ƿ<EFBFBD><C7B7><EFBFBD>ֹ<EFBFBD><D6B9><EFBFBD>۴<EFBFBD><DBB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool IsDisableCreateComment { get; set; }
|
2023-04-15 22:44:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|