DD.WellWorkover.Cloud/AsbCloudApp/Data/DepositDto.cs
2021-09-09 12:31:12 +05:00

16 lines
410 B
C#

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class DepositDto : IMapPoint, IId
{
public int Id { get; set; }
public string Caption { get; set; }
public string Description { get; set; }
public double? Latitude { get; set; }
public double? Longitude { get; set; }
public IEnumerable<ClusterDto> Clusters { get; set; }
}
}