DD.WellWorkover.Cloud/AsbCloudApp/Data/StatClusterDto.cs
2021-09-09 12:31:12 +05:00

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; }
}
}