2021-11-24 16:16:17 +05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
|
namespace AsbCloudApp.Data.SAUB
|
2021-11-24 16:16:17 +05:00
|
|
|
|
{
|
|
|
|
|
public class SetpointsRequestDto : IId
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public int IdWell { get; set; }
|
|
|
|
|
|
|
|
|
|
public int IdAuthor { get; set; }
|
|
|
|
|
|
|
|
|
|
public int IdState { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime UploadDate { get; set; }
|
|
|
|
|
|
|
|
|
|
public int ObsolescenceSec { get; set; }
|
|
|
|
|
|
|
|
|
|
public Dictionary<string, double> Setpoints { get; set; }
|
|
|
|
|
public string Comment { get; set; }
|
|
|
|
|
|
|
|
|
|
public WellDto Well { get; set; }
|
|
|
|
|
|
|
|
|
|
public UserDto Author { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|