forked from ddrilling/AsbCloudServer
31 lines
667 B
C#
31 lines
667 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|