forked from ddrilling/AsbCloudServer
4c68045398
Add entity DrillingProgram parts
22 lines
617 B
C#
22 lines
617 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class DrillingProgramStateDto
|
|
{
|
|
/// <summary>
|
|
/// 0 - не инициировано
|
|
/// 1 - загрузка и согласование
|
|
/// 2 - формируется (несколько минут)
|
|
/// 3 - готова
|
|
/// </summary>
|
|
public int IdState { get; set; }
|
|
public FileInfoDto Program { get; set; }
|
|
public IEnumerable<DrillingProgramPartDto> Parts { get; set; }
|
|
}
|
|
}
|