DD.WellWorkover.Cloud/AsbCloudApp/Data/SAUB/DrillTestDto.cs
2024-08-19 10:01:07 +05:00

15 lines
368 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.ComponentModel.DataAnnotations;
namespace AsbCloudApp.Data.SAUB;
/// <summary>
/// DTO для отображения записи drill_test
/// </summary>
public class DrillTestDto : DrillTestBaseDto
{
/// <summary>
/// Связанная с drill_test телеметрия
/// </summary>
public TelemetryDto? Telemetry { get; set; }
}