Files
transactions-list-parser/PriorBankParser/Constants.cs
2020-02-16 22:39:53 +03:00

12 lines
348 B
C#

namespace PriorBankParser
{
public static class Constants
{
public static class SectionNames
{
internal const string LockedSectionPrefix = "Заблокированные суммы по ........";
internal const string OperationSectionPrefix = "Операции по ........";
}
}
}