Skip to content

Commit d4b0500

Browse files
committed
✨ MOOV-3537: Add IsArchived prop to PaymentAccount model
1 parent 81a2fbc commit d4b0500

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
@@ -215,4 +215,10 @@ public string Summary
215215
/// The list of rules associated with this account.
216216
/// </summary>
217217
public List<RuleMinimal> Rules { get; set; } = [];
218+
219+
/// <summary>
220+
/// Indicates whether the account is archived. Archived accounts are not displayed in the UI.
221+
/// If an account receives a payment it will be automatically unarchived.
222+
/// </summary>
223+
public bool IsArchived { get; set; }
218224
}

0 commit comments

Comments
 (0)