附加信息准备中

This commit is contained in:
kwai
2023-03-13 19:44:30 +08:00
parent 414eb28867
commit 31872222bc
12 changed files with 146 additions and 73 deletions

View File

@@ -265,29 +265,29 @@ namespace AIStudio.Wpf.Mind.ViewModels
}
}
private string _grade;
public string Grade
private double _priority;
public double Priority
{
get
{
return _grade;
return _priority;
}
set
{
SetProperty(ref _grade, value);
SetProperty(ref _priority, value);
}
}
private double _completionRate;
public double CompletionRate
private double _rate;
public double Rate
{
get
{
return _completionRate;
return _rate;
}
set
{
SetProperty(ref _completionRate, value);
SetProperty(ref _rate, value);
}
}