aurora/Aurora/Design/Views/Artists/ArtistsViewModel.cs

20 lines
399 B
C#
Raw Normal View History

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-12-19 01:23:59 +00:00
public class TestObj
{
public string Test1 { get; set; }
public string Test2 { get; set; }
}
public class ArtistsViewModel : BaseViewModel
{
public ArtistsViewModel()
{
}
2019-12-19 01:23:59 +00:00
}
}