選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

FileEntityResponse.cs 571B

12345678910111213141516171819202122232425
  1. using Diligent.WebAPI.Contracts.DTOs.Categories;
  2. using Diligent.WebAPI.Contracts.DTOs.Tags;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Diligent.WebAPI.Contracts.DTOs.File
  9. {
  10. public class FileEntityResponse
  11. {
  12. public int Id { get; set; }
  13. public string Name { get; set; }
  14. public long Size { get; set; }
  15. public string Extension { get; set; }
  16. public List<TagResponse> Tags { get; set; }
  17. public bool Deleted { get; set; }
  18. }
  19. }