DD.WellWorkover.Cloud/AsbCloudApp/Data/WellOperationImport/SheetDto.cs

20 lines
474 B
C#
Raw Normal View History

2023-10-04 15:34:42 +05:00
using System.Collections.Generic;
using System.Linq;
namespace AsbCloudApp.Data.WellOperationImport;
/// <summary>
/// Лист полученный из файла Excel
/// </summary>
public class SheetDto
{
/// <summary>
/// Название листа
/// </summary>
public string Name { get; set; } = null!;
/// <summary>
/// Строки
/// </summary>
public IEnumerable<RowDto> Rows { get; set; } = Enumerable.Empty<RowDto>();
}