2021-07-22 14:23:47 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
2021-07-19 15:11:01 +05:00
|
|
|
|
{
|
2021-09-09 12:31:12 +05:00
|
|
|
|
public class ClusterDto : IMapPoint, IId
|
2021-07-19 15:11:01 +05:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2021-07-21 17:23:57 +05:00
|
|
|
|
public string Caption { get; set; }
|
2021-07-21 15:22:58 +05:00
|
|
|
|
public double? Latitude { get; set; }
|
|
|
|
|
public double? Longitude { get; set; }
|
2022-01-05 17:50:45 +05:00
|
|
|
|
public SimpleTimezoneDto Timezone { get; set; }
|
2021-12-21 11:52:53 +05:00
|
|
|
|
public int? IdDeposit { get; set; }
|
|
|
|
|
public DepositBaseDto Deposit { get; set; }
|
2021-07-22 14:23:47 +05:00
|
|
|
|
public IEnumerable<WellDto> Wells { get; set; }
|
2021-07-19 15:11:01 +05:00
|
|
|
|
}
|
|
|
|
|
}
|