兼容win7版应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
449 B

using CommunityToolkit.Mvvm.ComponentModel;
namespace AIK.ViewModels.Integral
{
public partial class RechargeAmountOption : ObservableObject
{
public RechargeAmountOption(decimal amount, int integral)
{
Amount = amount;
Integral = integral;
}
public decimal Amount { get; }
public int Integral { get; }
[ObservableProperty]
private bool _isSelected;
}
}