forked from ddrilling/AsbCloudServer
28 lines
604 B
C#
28 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data.SAUB
|
|
{
|
|
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; }
|
|
}
|
|
}
|