You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
PortfolioLink/backend/ColumnStandard.cs

20 lines
525 B

namespace backend.Models
{
public class ColumnStandard
{
public ColumnStandard(string header, string headerRegex, string valueRegex, bool nullable = false)
{
Header = header;
HeaderRegex = headerRegex;
ValueRegex = valueRegex;
Nullable = nullable;
}
public string Header { get; set; }
public string HeaderRegex { get; set; }
public string ValueRegex { get; set; }
public bool Nullable { get; set; }
}
}