isn/src/isnd/ViewModels/HomeIndexViewModel.cs

11 lines
174 B
C#
Raw Normal View History

2021-07-05 12:55:52 +01:00
using Unleash;
namespace isn.ViewModels
2021-06-22 00:10:01 +01:00
{
public class HomeIndexViewModel
{
public int PkgCount { get; set; }
2021-07-05 12:55:52 +01:00
public IUnleash UnleashClient;
2021-06-22 00:10:01 +01:00
}
}