forked from ddrilling/AsbCloudServer
20 lines
471 B
C#
20 lines
471 B
C#
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>();
|
|
} |