DynamicCell.cs 244 B

12345678910
  1. namespace ExcelORM.Models
  2. {
  3. public record DynamicCell
  4. {
  5. public int Position { get; set; }
  6. public string? Header { get; set; }
  7. public Type? Type { get; set; }
  8. public object? Value { get; set; }
  9. }
  10. }