forked from ddrilling/AsbCloudServer
18 lines
423 B
C#
18 lines
423 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class DepositBaseDto : IMapPoint, IId
|
|
{
|
|
public int Id { get; set; }
|
|
public string Caption { get; set; }
|
|
public double? Latitude { get; set; }
|
|
public double? Longitude { get; set; }
|
|
}
|
|
|
|
public class DepositDto : DepositBaseDto
|
|
{
|
|
public IEnumerable<ClusterDto> Clusters { get; set; }
|
|
}
|
|
}
|