兼容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.

23 lines
540 B

using CommunityToolkit.Mvvm.ComponentModel;
namespace AIK.ViewModels.Membership
{
public partial class MembershipOpenItem : ObservableObject
{
public MembershipOpenItem(string code, string name, int integralPerYear)
{
Code = code;
Name = name;
IntegralPerYear = integralPerYear;
}
public string Code { get; }
public string Name { get; }
public int IntegralPerYear { get; }
[ObservableProperty]
private bool _isOpening;
}
}