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

39 lines
994 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace AsbCloudApp.Data
{
#nullable enable
/// <summary>
/// инфо о результатах замера
/// </summary>
public class MeasureDto : IId, IWellRelated
{
/// <inheritdoc/>
public int Id { get; set; }
/// <inheritdoc/>
public int IdWell { get; set; }
/// <summary>
/// Id категории замера
/// </summary>
public int IdCategory { get; set; }
/// <summary>
/// название категории замера
/// </summary>
public string CategoryName { get; set; } = string.Empty;
/// <summary>
/// отметка времени замера
/// </summary>
public DateTime Timestamp { get; set; }
/// <summary>
/// данные замера
/// </summary>
public Dictionary<string, object> Data { get; set; } = new();
}
}