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.
12 lines
357 B
12 lines
357 B
namespace SparkClient.ViewModel.Configuration; |
|
|
|
public class LevelConfigVM: BaseViewModel |
|
{ |
|
|
|
public List<String> _levels; |
|
public List<String> Levels { get { return _levels; } set { _levels = value; OnPropertyChanged("Levels"); } } |
|
public LevelConfigVM() |
|
{ |
|
_levels = new List<string>(){"12314", "3455623", "4567894"}; |
|
} |
|
} |