2023-12-29 18:19:35 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2023-12-30 16:10:30 +08:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
2023-12-29 18:19:35 +08:00
|
|
|
|
using Yi.Framework.Bbs.Domain.Shared.Enums;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Article
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ArticleImprotDto
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主题id
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Required]
|
|
|
|
|
|
public Guid DiscussId { get; set; }
|
|
|
|
|
|
|
2023-12-30 16:10:30 +08:00
|
|
|
|
public Guid ArticleParentId { get; set; }= Guid.Empty;
|
|
|
|
|
|
|
2024-01-04 20:58:45 +08:00
|
|
|
|
public ArticleImportTypeEnum ImportType { get; set; } = ArticleImportTypeEnum.Default;
|
2023-12-30 16:10:30 +08:00
|
|
|
|
}
|
2023-12-29 18:19:35 +08:00
|
|
|
|
}
|