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