Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

FileEntityResponse.cs 528B

1234567891011121314151617181920212223
  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. }
  18. }