Skip to content

Commit ebe3e8e

Browse files
authored
Merge pull request #422 from nofrixion/feature/MOOV-3537-archived-accounts
MOOV-3537: Add IsArchived prop to PaymentAccount model
2 parents 8ad9f7a + d4b0500 commit ebe3e8e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/NoFrixion.MoneyMoov/Models/Account/PaymentAccount.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,10 @@ public string Summary
210210
/// The list of rules associated with this account.
211211
/// </summary>
212212
public List<RuleMinimal> Rules { get; set; } = [];
213+
214+
/// <summary>
215+
/// Indicates whether the account is archived. Archived accounts are not displayed in the UI.
216+
/// If an account receives a payment it will be automatically unarchived.
217+
/// </summary>
218+
public bool IsArchived { get; set; }
213219
}

0 commit comments

Comments
 (0)