DynamicWorksheet.cs 231 B

123456789
  1. namespace ExcelORM.Models
  2. {
  3. public record DynamicWorksheet
  4. {
  5. public string? Name { get; set; }
  6. public int Position { get; set; }
  7. public IEnumerable<List<DynamicCell>>? Cells { get; set; }
  8. }
  9. }