using System.Collections.Generic; namespace AsbCloudApp.Data { public class DrillingProgramPartDto { public string Name { get; set; } public int IdFileCategory { get; set; } /// /// 0 - NoFile /// 1 - approving /// 2 - completely approved /// public int IdState { get; set; } public IEnumerable Publishers { get; set; } public IEnumerable Approvers { get; set; } public bool PermissionToApprove { get; set; } public bool PermissionToUpload { get; set; } public FileInfoDto File { get; set; } } }