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