2021-07-22 14:23:47 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
2021-07-19 15:11:01 +05:00
|
|
|
|
{
|
2022-06-01 17:52:26 +05:00
|
|
|
|
#nullable enable
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// DTO кустов
|
|
|
|
|
/// </summary>
|
2021-09-09 12:31:12 +05:00
|
|
|
|
public class ClusterDto : IMapPoint, IId
|
2021-07-19 15:11:01 +05:00
|
|
|
|
{
|
2022-06-01 17:52:26 +05:00
|
|
|
|
/// <inheritdoc/>
|
2021-07-19 15:11:01 +05:00
|
|
|
|
public int Id { get; set; }
|
2022-06-01 17:52:26 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Название
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Caption { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2021-07-21 15:22:58 +05:00
|
|
|
|
public double? Latitude { get; set; }
|
2022-06-01 17:52:26 +05:00
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2021-07-21 15:22:58 +05:00
|
|
|
|
public double? Longitude { get; set; }
|
2022-06-01 17:52:26 +05:00
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2022-06-07 12:29:11 +05:00
|
|
|
|
public SimpleTimezoneDto? Timezone { get; set; }
|
2022-06-01 17:52:26 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ИД месторождения, необязательный
|
|
|
|
|
/// </summary>
|
2021-12-21 11:52:53 +05:00
|
|
|
|
public int? IdDeposit { get; set; }
|
2022-06-01 17:52:26 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// DTO месторождения
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DepositBaseDto? Deposit { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Список скважин куста
|
|
|
|
|
/// </summary>
|
2022-06-07 12:29:11 +05:00
|
|
|
|
public IEnumerable<WellDto>? Wells { get; set; } = null!;
|
2021-07-19 15:11:01 +05:00
|
|
|
|
}
|
2022-06-01 17:52:26 +05:00
|
|
|
|
#nullable disable
|
2021-07-19 15:11:01 +05:00
|
|
|
|
}
|