DD.WellWorkover.Cloud/AsbCloudApp/Data/StatClusterDto.cs

12 lines
264 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class StatClusterDto : IId
{
2021-08-25 11:13:56 +05:00
public int Id { get; set; }
public string Caption { get; set; }
public IEnumerable<StatWellDto> StatsWells { get; set; }
}
}