Changed NCR query to pull loss comments instead of assign cause description

This commit is contained in:
Daniel Wathen
2023-01-24 16:04:47 -07:00
parent e8556c9176
commit 476e72ced2
4 changed files with 5 additions and 5 deletions

View File

@ -13,6 +13,6 @@ public class NCR
public string RDS_NO { get; set; }
[JsonPropertyName("TOT_REJ")]
public int TOT_REJ { get; set; }
[JsonPropertyName("AC_DESC")]
public string AC_DESC { get; set; }
[JsonPropertyName("LOSS_COMMENTS")]
public string LOSS_COMMENTS { get; set; }
}