DD.WellWorkover.Cloud/AsbCloudApp/Data/WellInfoDto.cs
2022-05-06 13:50:26 +05:00

23 lines
569 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.

namespace AsbCloudApp.Data
{
/// <summary>
/// базовая информация о скважине
/// </summary>
public class WellInfoDto
{
/// <summary>
/// Название
/// </summary>
public string Caption { get; set; }
/// <summary>
/// Название куста
/// </summary>
public string Cluster { get; set; }
/// <summary>
/// Название месторождения
/// </summary>
public string Deposit { get; set; }
}
}