0
0

DocumentUpdateContentInput.cs 527 B

1234567891011121314151617181920212223242526
  1. namespace Admin.Core.Service.Admin.Document.Input
  2. {
  3. public class DocumentUpdateContentInput
  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. }