forked from ddrilling/AsbCloudServer
29 lines
913 B
C#
29 lines
913 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// класс, для хранения списка плановых операций для сопоставления
|
|||
|
/// и даты последней сопоставленной плановой операции
|
|||
|
/// </summary>
|
|||
|
#nullable disable
|
|||
|
public class WellOperationPlanDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// коллекция плановых операций
|
|||
|
/// </summary>
|
|||
|
public IEnumerable<WellOperationDto> WellOperationsPlan { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// дата последней сопоставленной плановой операции
|
|||
|
/// </summary>
|
|||
|
public DateTime DateLastAssosiatedPlanOperation { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
#nullable disable
|
|||
|
}
|