forked from ddrilling/AsbCloudServer
12 lines
264 B
C#
12 lines
264 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class StatClusterDto : IId
|
|
{
|
|
public int Id { get; set; }
|
|
public string Caption { get; set; }
|
|
public IEnumerable<StatWellDto> StatsWells { get; set; }
|
|
}
|
|
}
|