0
0

DocumentGetContentOutput.cs 524 B

12345678910111213141516171819202122232425
  1. namespace Admin.Core.Service.Admin.Document.Output
  2. {
  3. public class DocumentGetContentOutput
  4. {
  5. /// <summary>
  6. /// 񅧏
  7. /// </summary>
  8. public long Id { get; set; }
  9. /// <summary>
  10. /// Ãû³Æ
  11. /// </summary>
  12. public string Label { get; set; }
  13. /// <summary>
  14. /// ÄÚÈÝ
  15. /// </summary>
  16. public string Content { get; set; }
  17. /// <summary>
  18. /// °æ±¾
  19. /// </summary>
  20. public long Version { get; set; }
  21. }
  22. }