Add quick parse notation for critical editor
This commit is contained in:
@@ -16,6 +16,7 @@ public sealed class CriticalCellEditorModel
|
||||
public string ColumnLabel { get; set; } = string.Empty;
|
||||
public string ColumnRole { get; set; } = string.Empty;
|
||||
public string RawCellText { get; set; } = string.Empty;
|
||||
public string QuickParseInput { get; set; } = string.Empty;
|
||||
public string DescriptionText { get; set; } = string.Empty;
|
||||
public string? RawAffixText { get; set; }
|
||||
public string ParseStatus { get; set; } = string.Empty;
|
||||
@@ -43,6 +44,7 @@ public sealed class CriticalCellEditorModel
|
||||
ColumnLabel = response.ColumnLabel,
|
||||
ColumnRole = response.ColumnRole,
|
||||
RawCellText = response.RawCellText,
|
||||
QuickParseInput = response.QuickParseInput,
|
||||
DescriptionText = response.DescriptionText,
|
||||
RawAffixText = response.RawAffixText,
|
||||
ParseStatus = response.ParseStatus,
|
||||
@@ -61,6 +63,7 @@ public sealed class CriticalCellEditorModel
|
||||
{
|
||||
var request = new CriticalCellUpdateRequest(
|
||||
RawCellText,
|
||||
QuickParseInput,
|
||||
DescriptionText,
|
||||
RawAffixText,
|
||||
ResolveParseStatus(Effects, Branches),
|
||||
@@ -99,6 +102,7 @@ public sealed class CriticalCellEditorModel
|
||||
ColumnLabel = ColumnLabel,
|
||||
ColumnRole = ColumnRole,
|
||||
RawCellText = RawCellText,
|
||||
QuickParseInput = QuickParseInput,
|
||||
DescriptionText = DescriptionText,
|
||||
RawAffixText = RawAffixText,
|
||||
ParseStatus = ParseStatus,
|
||||
|
||||
Reference in New Issue
Block a user