Refactor FileRead and WSRequest classes to utilize unique sequence and unique ID generation; enhance JSON handling and improve code clarity.
14 lines
492 B
C#
14 lines
492 B
C#
namespace Adaptation.FileHandlers.pcl;
|
|
|
|
internal class Constant
|
|
{
|
|
|
|
public int Take { get; } = 11;
|
|
public string Site { get; } = "Site: ";
|
|
public string Page1 { get; } = "Page 1";
|
|
public string Multiple { get; } = "MULTIPLE";
|
|
public string SummaryLine { get; } = "SUMMARY A A";
|
|
public string LastUnits { get; } = "Flat Z: Grade : % Flat Z: Grade : % Flat Z: Grade : %";
|
|
public string LastUnitsB { get; } = "Flat Z: Grade : % Flat Z: Grade : % Flat Z: Grade : %";
|
|
|
|
} |