dotnet format --verbosity detailed --severity warn
This commit is contained in:
@ -1,22 +1,16 @@
|
||||
namespace Adaptation.FileHandlers.RsM
|
||||
namespace Adaptation.FileHandlers.RsM;
|
||||
|
||||
public class Detail
|
||||
{
|
||||
|
||||
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 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);
|
||||
}
|
||||
|
||||
}
|
||||
public override string ToString() => string.Concat(Merit, ";", Pt, ";", R, ";", Rs, ";", T);
|
||||
|
||||
}
|
Reference in New Issue
Block a user