Skip to content

Commit

Permalink
fix: wealth record error
Browse files Browse the repository at this point in the history
  • Loading branch information
KrystianKempski committed Nov 19, 2024
1 parent a3be323 commit 395dc5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DA_Models/CharacterModels/CharacterDTO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public DateModel CurrentDate {
public decimal Gold { get; set; } = 0.0m;
public override string ToString() => NPCName;

public ICollection<WealthRecord>? WealthLog { get; set; }
public ICollection<WealthRecordDTO>? WealthLog { get; set; }

}

Expand Down

0 comments on commit 395dc5e

Please sign in to comment.