2019-05-18 21:25:36 +00:00
|
|
|
|
using System;
|
2019-12-19 01:23:59 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-07-05 18:17:09 +00:00
|
|
|
|
namespace Aurora.Design.Views.Artists
|
2019-05-18 21:25:36 +00:00
|
|
|
|
{
|
2019-12-19 01:23:59 +00:00
|
|
|
|
public class TestObj
|
|
|
|
|
{
|
|
|
|
|
public string Test1 { get; set; }
|
|
|
|
|
public string Test2 { get; set; }
|
|
|
|
|
}
|
2019-07-15 19:03:59 +00:00
|
|
|
|
public class ArtistsViewModel : BaseViewModel
|
2019-05-18 21:25:36 +00:00
|
|
|
|
{
|
|
|
|
|
public ArtistsViewModel()
|
|
|
|
|
{
|
|
|
|
|
}
|
2019-12-19 01:23:59 +00:00
|
|
|
|
|
2019-05-18 21:25:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|