using Adaptation.FileHandlers.Stratus;

This commit is contained in:
2025-02-17 12:40:52 -07:00
parent 55dbbc517c
commit 2453d448e7
3 changed files with 33 additions and 27 deletions

View File

@ -7,8 +7,10 @@ namespace Adaptation.FileHandlers.Stratus;
internal class Row
{
public Row(Run run, int i, int j)
public Row(Run run, int index, int i, int j)
{
Index = index;
//
Batch = run.Header.Batch;
Cassette = run.Header.Cassette;
DateTime = run.Header.DateTime;
@ -28,6 +30,8 @@ internal class Row
StdDev = run.Footer.StdDev;
}
public int Index { get; }
//
public string Batch { get; }
public string Cassette { get; }
public string DateTime { get; }