MET08RESIMAPCDE - v2.43.4 - MethodBaseName

This commit is contained in:
2022-08-08 16:05:28 -07:00
parent 94b06b7de5
commit 1d7368c44e
69 changed files with 1763 additions and 356 deletions

View File

@ -0,0 +1,16 @@
namespace Adaptation.FileHandlers.txt;
public class Detail
{
public string HeaderUniqueId { get; set; }
public string Merit { get; set; }
public string Pt { get; set; }
public string R { get; set; }
public string Rs { get; set; }
public string T { get; set; }
public string UniqueId { get; set; }
public override string ToString() => string.Concat(Merit, ";", Pt, ";", R, ";", Rs, ";", T);
}