using System; namespace AsbCloudApp.Data { public class FilePropertiesDto { public int Id { get; set; } public string Name { get; set; } public int IdCategory { get; set; } public DateTime UploadDate { get; set; } public string UserName { get; set; } } }