DD.WellWorkover.Cloud/AsbCloudApp/Data/ClusterDto.cs

16 lines
451 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class ClusterDto : IMapPoint, IId
{
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; }
2021-12-21 11:52:53 +05:00
public int? IdDeposit { get; set; }
public DepositBaseDto Deposit { get; set; }
public IEnumerable<WellDto> Wells { get; set; }
}
}