using System.Collections.Generic;
namespace AsbCloudApp.Data
{
#nullable enable
///
/// DTO кустов
///
public class ClusterDto : MapPointBaseDto
{
///
/// ИД месторождения, необязательный
///
public int? IdDeposit { get; set; }
///
/// DTO месторождения
///
public DepositBaseDto? Deposit { get; set; }
///
/// Список скважин куста
///
public IEnumerable? Wells { get; set; } = null!;
}
///
/// DTO кустов
///
public class ClusterBranchDto : MapPointBaseDto
{
///
/// Список скважин куста
///
public IEnumerable? Wells { get; set; } = null!;
}
#nullable disable
}