22 lines
514 B
C#
22 lines
514 B
C#
namespace Adaptation.FileHandlers.pcl
|
|
{
|
|
|
|
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()
|
|
{
|
|
return string.Concat(Merit, ";", Pt, ";", R, ";", Rs, ";", T);
|
|
}
|
|
|
|
}
|
|
|
|
} |