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

28 lines
624 B
C#
Raw Permalink 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;
/// <summary>
/// базовая информация о скважине
/// </summary>
public class WellInfoDto: IId
{
/// <inheritdoc/>
public int Id { get; set; }
/// <summary>
/// Название
/// </summary>
[Required]
public string Caption { get; set; } = null!;
/// <summary>
/// Название куста
/// </summary>
public string? Cluster { get; set; }
/// <summary>
/// Название месторождения
/// </summary>
public string? Deposit { get; set; }
}