Добавил глобальный поиск
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 29s

This commit is contained in:
2023-07-30 14:21:27 +03:00
parent e269c8dce5
commit 0fbeb6160a
20 changed files with 229 additions and 48 deletions

View File

@ -0,0 +1,8 @@
namespace PaydayFrontend.Models;
public class AdminIndexViewModel
{
public string Name { get; set; }
public string LogoUrl { get; set; }
public string Type { get; set; }
}

View File

@ -0,0 +1,7 @@
namespace PaydayFrontend.Models;
public class AdminViewModel
{
public List<AdminIndexViewModel> indexes { get; set; }
public string searchString { get; set; }
}

View File

@ -0,0 +1,8 @@
namespace PaydayFrontend.Models;
public class Bank
{
public long Id { get; set; }
public string Name { get; set; }
public string ImageUrl { get; set; }
}