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