Skip to content

Commit

Permalink
Fix #229
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAxelander committed Mar 14, 2024
1 parent 67bbd09 commit dc99790
Show file tree
Hide file tree
Showing 14 changed files with 1,657 additions and 28 deletions.
6 changes: 3 additions & 3 deletions OpenBudgeteer.Core.Data.Entities/Models/MappingRule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class MappingRule : IEntity
/// </para>
/// </summary>
[Required]
public int ComparisionField { get; set; }
public int ComparisonField { get; set; }

/// <summary>
/// Identifier how Comparison should happen
Expand All @@ -38,8 +38,8 @@ public class MappingRule : IEntity
/// </para>
/// </summary>
[Required]
public int ComparisionType { get; set; }
public int ComparisonType { get; set; }

[Required]
public string ComparisionValue { get; set; } = null!;
public string ComparisonValue { get; set; } = null!;
}
Loading

0 comments on commit dc99790

Please sign in to comment.