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

29 lines
760 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
namespace AsbCloudApp.Data
{
2022-06-02 12:35:51 +05:00
/// <summary>
/// DTO статистики скважин куста
/// </summary>
public class StatClusterDto : IId
{
2022-06-02 12:35:51 +05:00
/// <inheritdoc/>
[Required]
2021-08-25 11:13:56 +05:00
public int Id { get; set; }
2022-06-02 12:35:51 +05:00
/// <summary>
/// название куста
/// </summary>
[Required]
public string Caption { get; set; } = string.Empty;
2022-06-02 12:35:51 +05:00
/// <summary>
/// список статистик скважин куста
/// </summary>
[Required]
public IEnumerable<StatWellDto> StatsWells { get; set; } = Enumerable.Empty<StatWellDto>();
}
}