forked from ddrilling/AsbCloudServer
21 lines
550 B
C#
21 lines
550 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
/// <summary>
|
|
/// План-факт статистики по операциям за секцию скважины
|
|
/// </summary>
|
|
public class StatSectionDto : PlanFactDto<StatOperationsDto>, IId
|
|
{
|
|
/// <inheritdoc/>
|
|
[Required]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// название секции
|
|
/// </summary>
|
|
[Required]
|
|
public string Caption { get; set; } = string.Empty;
|
|
}
|
|
}
|