Some checks failed
Gitea/WheresMyMoney/pipeline/head There was a failure building this commit
- Modify planned payment - minor bug fixes
15 lines
327 B
C#
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); |