forked from ddrilling/AsbCloudServer
17 lines
507 B
C#
17 lines
507 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class ClusterDto : IMapPoint, IId
|
|
{
|
|
public int Id { get; set; }
|
|
public string Caption { get; set; }
|
|
public double? Latitude { get; set; }
|
|
public double? Longitude { get; set; }
|
|
public SimpleTimezoneDto Timezone { get; set; }
|
|
public int? IdDeposit { get; set; }
|
|
public DepositBaseDto Deposit { get; set; }
|
|
public IEnumerable<WellDto> Wells { get; set; }
|
|
}
|
|
}
|