DD.WellWorkover.Cloud/AsbCloudApp/Data/ClusterDto.cs
2021-07-21 15:22:58 +05:00

20 lines
479 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsbCloudApp.Data
{
public class ClusterDto: 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<WellDto> Wells { get; set; }
}
}