DD.WellWorkover.Cloud/AsbCloudApp/Data/FileInfoDto.cs

18 lines
491 B
C#
Raw Normal View History

using System;
namespace AsbCloudApp.Data
{
public class FileInfoDto : IId
{
public int Id { get; set; }
2021-08-29 17:25:16 +05:00
public int IdWell { get; set; }
public int IdCategory { get; set; }
2021-08-29 17:25:16 +05:00
public int IdAuthor { get; set; }
public string Name { get; set; }
public DateTime UploadDate { get; set; }
public long Size { get; set; }
public FilePublishInfoDto PublishInfo { get; set; }
public UserDto Author { get; set; }
}
}