Skip to content

Commit

Permalink
Add new properties for beneficiary archived events. (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
sipsorcery authored Jul 1, 2024
1 parent 21be0b0 commit f812873
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/NoFrixion.MoneyMoov/Enums/BeneficiaryEventTypeEnum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,9 @@ public enum BeneficiaryEventTypeEnum
/// A beneficiary was enabled.
/// </summary>
Enable = 5,

/// <summary>
/// An archive is a soft delete. It removes the beneficiary from the active list.
/// </summary>
Archive = 6
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,9 @@ public class BeneficiaryEvent
/// </summary>
public string SourceAccountsHash { get; set; }

public bool IsEnabled { get; set; }

public bool IsArchived { get; set; }

public User User { get; set; }
}

0 comments on commit f812873

Please sign in to comment.