feat: 搭建文章导入功能正在适配

This commit is contained in:
陈淳
2023-12-29 18:19:35 +08:00
parent 225fec8ebf
commit faf28d40c6
5 changed files with 110 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Bbs.Domain.Shared.Model
{
public class FileObject
{
public string Content { get; set; }
public string FileName { get; set; }
}
}