using Admin.Core.Service.Admin.Document.Input;
using Newtonsoft.Json;
namespace Admin.Core.Service.Admin.Document.Output
{
public class DocumentGetContentOutput
{
///
/// 񅧏
///
public long Id { get; set; }
///
/// Ãû³Æ
///
public string Label { get; set; }
///
/// ÄÚÈÝ
///
public string Content { get; set; }
///
/// °æ±¾
///
public long Version { get; set; }
}
}