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

25 lines
658 B
C#
Raw Normal View History

using System.Collections.Generic;
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/>
2021-08-25 11:13:56 +05:00
public int Id { get; set; }
2022-06-02 12:35:51 +05:00
/// <summary>
/// название куста
/// </summary>
public string Caption { get; set; } = string.Empty;
2022-06-02 12:35:51 +05:00
/// <summary>
/// список статистик скважин куста
/// </summary>
public IEnumerable<StatWellDto> StatsWells { get; set; } = Enumerable.Empty<StatWellDto>();
}
}