2021-07-22 14:23:47 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
2021-07-19 15:11:01 +05:00
|
|
|
|
{
|
2021-12-21 11:52:53 +05:00
|
|
|
|
public class DepositBaseDto : IMapPoint, IId
|
2021-07-19 15:11:01 +05:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2021-07-22 14:23:47 +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
|
|
|
|
}
|
2021-07-19 15:11:01 +05:00
|
|
|
|
|
2021-12-21 11:52:53 +05:00
|
|
|
|
public class DepositDto : DepositBaseDto
|
|
|
|
|
{
|
2021-07-22 14:23:47 +05:00
|
|
|
|
public IEnumerable<ClusterDto> Clusters { get; set; }
|
2021-07-19 15:11:01 +05:00
|
|
|
|
}
|
|
|
|
|
}
|