forked from ddrilling/AsbCloudServer
16 lines
399 B
C#
16 lines
399 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class ClusterDto : IMapPoint
|
|
{
|
|
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<WellDto> Wells { get; set; }
|
|
}
|
|
}
|