WheresMyMoney/WheresMyMoney.Maui/FullPlannedPaymentViewModel.cs
Kapitan 2d69a4b018
Some checks failed
Gitea/WheresMyMoney/pipeline/head There was a failure building this commit
Version 1.0.3
- Modify planned payment
- minor bug fixes
2025-01-26 14:53:16 +01:00

15 lines
327 B
C#

using System.Windows.Input;
namespace WheresMyMoney.Maui;
public record FullPlannedPaymentViewModel(
int Id,
string Amount,
string Name,
string DateStart,
string DateEnd,
bool ShowDateEnd,
bool IsSubscription,
int? Reoccurences,
string? ReoccurenceType,
ICommand? LongPressCommand);