using System.Collections.Generic;
using System.Linq;
namespace AsbCloudApp.Data.WellOperationImport;
///
/// Лист полученный из файла Excel
///
public class SheetDto
{
///
/// Название листа
///
public string Name { get; set; } = null!;
///
/// Строки
///
public IEnumerable Rows { get; set; } = Enumerable.Empty();
}