This commit is contained in:
Paul Schneider 2021-07-05 12:55:52 +01:00
commit 476d35ae8a
270 changed files with 477 additions and 401 deletions

View file

@ -0,0 +1,11 @@
using Unleash;
namespace isn.ViewModels
{
public class HomeIndexViewModel
{
public int PkgCount { get; set; }
public IUnleash UnleashClient;
}
}

View file

@ -0,0 +1,11 @@
using System.Collections.Generic;
using isn.Data;
namespace isn.ViewModels
{
public class PackageVersionIndexViewModel
{
public List<PackageVersion> Versions {get; set;}
public string PackageId { get; set; }
}
}