All but DataTable Deserialize

This commit is contained in:
2023-01-09 19:26:00 -07:00
parent 6cbcad2a5d
commit 0468c8d42d
25 changed files with 374 additions and 89 deletions

View File

@ -0,0 +1,9 @@
namespace OI.Metrology.Shared.DataModels;
public class ColumnValue
{
public string? Column { get; set; }
public string? Value { get; set; }
}