2021-07-23 17:40:31 +05:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
|
|
|
|
{
|
2021-08-13 17:26:19 +05:00
|
|
|
|
public class FileInfoDto
|
2021-07-23 17:40:31 +05:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public int IdCategory { get; set; }
|
|
|
|
|
public DateTime UploadDate { get; set; }
|
2021-08-13 17:26:19 +05:00
|
|
|
|
public string AuthorName { get; set; }
|
2021-08-20 11:20:24 +05:00
|
|
|
|
public int CompanyId { get; set; }
|
2021-07-23 17:40:31 +05:00
|
|
|
|
}
|
|
|
|
|
}
|