aurora/aurora-sharp-desktop/Aurora/UserInterface/Views/Artists/ArtistsViewModel.cs
2021-04-10 10:20:50 -04:00

20 lines
399 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Threading.Tasks;
namespace Aurora.Design.Views.Artists
{
public class TestObj
{
public string Test1 { get; set; }
public string Test2 { get; set; }
}
public class ArtistsViewModel : BaseViewModel
{
public ArtistsViewModel()
{
}
}
}