Skip to content

Commit

Permalink
Merge pull request #413 from nofrixion/feature/MOOV-3637-payrun-archive
Browse files Browse the repository at this point in the history
MOOV-3637: Add IsArchived flag to the payrun model
  • Loading branch information
agranillonf authored Sep 17, 2024
2 parents 1566127 + b6a76f8 commit e197c18
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/NoFrixion.MoneyMoov/Models/Payruns/Payrun.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ public class Payrun
public List<Payout>? Payouts { get; set; }

public List<PayrunPayment>? Payments { get; set; }

public bool IsArchived { get; set; }

public bool CanEdit => Status.CanEdit();

Expand Down

0 comments on commit e197c18

Please sign in to comment.