mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-06 09:16:37 +08:00
附加信息准备中
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user