2022-02-09 14:25:22 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
|
|
|
|
{
|
|
|
|
|
public class DrillingProgramPartDto
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public int IdFileCategory { get; set; }
|
2022-02-12 11:28:16 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 0 - NoFile
|
|
|
|
|
/// 1 - approving
|
|
|
|
|
/// 2 - completely approved
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int IdState { get; set; }
|
2022-02-09 14:25:22 +05:00
|
|
|
|
public IEnumerable<UserDto> Publishers { get; set; }
|
|
|
|
|
public IEnumerable<UserDto> Approvers { get; set; }
|
|
|
|
|
public bool PermissionToApprove { get; set; }
|
|
|
|
|
public bool PermissionToUpload { get; set; }
|
|
|
|
|
public FileInfoDto File { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|