forked from ddrilling/AsbCloudServer
14 lines
366 B
C#
14 lines
366 B
C#
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class DepositDto: IMapPoint
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
public double Latitude { get; set; }
|
|||
|
public double Longitude { get; set; }
|
|||
|
|
|||
|
//public IEnumerable<ClusterDto> Clusters { get; set; }
|
|||
|
}
|
|||
|
}
|