Добавил глобальный поиск
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 29s
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 29s
This commit is contained in:
8
PaydayFrontend/Models/AdminIndexViewModel.cs
Normal file
8
PaydayFrontend/Models/AdminIndexViewModel.cs
Normal 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; }
|
||||
}
|
7
PaydayFrontend/Models/AdminViewModel.cs
Normal file
7
PaydayFrontend/Models/AdminViewModel.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace PaydayFrontend.Models;
|
||||
|
||||
public class AdminViewModel
|
||||
{
|
||||
public List<AdminIndexViewModel> indexes { get; set; }
|
||||
public string searchString { get; set; }
|
||||
}
|
8
PaydayFrontend/Models/Bank.cs
Normal file
8
PaydayFrontend/Models/Bank.cs
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user