DD.WellWorkover.Cloud/AsbCloudApp/Data/MeasureDto.cs

38 lines
977 B
C#
Raw Normal View History

2021-08-27 17:55:22 +05:00
using System;
using System.Collections.Generic;
namespace AsbCloudApp.Data
{
2022-06-02 12:35:51 +05:00
/// <summary>
/// инфо о результатах замера
/// </summary>
public class MeasureDto : IId, IWellRelated
2021-08-27 17:55:22 +05:00
{
2022-06-02 12:35:51 +05:00
/// <inheritdoc/>
2021-08-27 17:55:22 +05:00
public int Id { get; set; }
2022-06-02 12:35:51 +05:00
/// <inheritdoc/>
2021-08-27 17:55:22 +05:00
public int IdWell { get; set; }
2022-06-02 12:35:51 +05:00
/// <summary>
/// Id категории замера
/// </summary>
2021-08-27 17:55:22 +05:00
public int IdCategory { get; set; }
2022-06-02 12:35:51 +05:00
/// <summary>
/// название категории замера
/// </summary>
public string CategoryName { get; set; } = string.Empty;
2021-08-27 17:55:22 +05:00
2022-06-02 12:35:51 +05:00
/// <summary>
/// отметка времени замера
/// </summary>
public DateTime Timestamp { get; set; }
2021-08-27 17:55:22 +05:00
2022-06-02 12:35:51 +05:00
/// <summary>
/// данные замера
/// </summary>
public Dictionary<string, object> Data { get; set; } = new();
2021-08-27 17:55:22 +05:00
}
}