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

20 lines
492 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
2024-08-19 10:01:07 +05:00
namespace AsbCloudApp.Data;
/// <summary>
/// План-факт статистики по операциям за секцию скважины
/// </summary>
public class StatSectionDto : PlanFactDto<StatOperationsDto>, IId
2021-08-25 11:13:56 +05:00
{
2024-08-19 10:01:07 +05:00
/// <inheritdoc/>
[Required]
public int Id { get; set; }
2022-06-02 12:35:51 +05:00
/// <summary>
2024-08-19 10:01:07 +05:00
/// название секции
2022-06-02 12:35:51 +05:00
/// </summary>
2024-08-19 10:01:07 +05:00
[Required]
public string Caption { get; set; } = string.Empty;
2021-08-25 11:13:56 +05:00
}