DD.WellWorkover.Cloud/AsbCloudApp/Data/FileInfoDto.cs
Фролов a7962492af fileController search by companyName (not by companyId).
Add UserDto into FileInfoDto.
Add CompanyDto into UserDto.
2021-08-31 18:01:26 +05:00

17 lines
425 B
C#

using System;
namespace AsbCloudApp.Data
{
public class FileInfoDto
{
public int Id { get; set; }
public int IdWell { get; set; }
public int IdCategory { get; set; }
public int IdAuthor { get; set; }
public string Name { get; set; }
public DateTime UploadDate { get; set; }
public long Size { get; set; }
public UserDto Author { get; set; }
}
}