2024-04-30 16:56:58 +04:00
|
|
|
|
namespace PolyclinicWebAppImplementer
|
|
|
|
|
{
|
|
|
|
|
public static class SiteMenuItems
|
|
|
|
|
{
|
|
|
|
|
public static (string Url, string Title) Index = ("", "Главная");
|
|
|
|
|
public static (string Url, string Title) Courses = ("Courses", "Курсы");
|
|
|
|
|
public static (string Url, string Title) Diagnoses = ("Diagnoses", "Болезни");
|
|
|
|
|
public static (string Url, string Title) Symptomes = ("Symptomes", "Симптомы");
|
2024-04-30 19:57:19 +04:00
|
|
|
|
public static (string Url, string Title) Symptom = ("Symptom", "Симптом");
|
|
|
|
|
public static (string Url, string Title) Diagnose = ("Diagnose", "Болезнь");
|
|
|
|
|
public static (string Url, string Title) Course = ("Course", "Курс");
|
2024-04-30 21:05:53 +04:00
|
|
|
|
public static (string Url, string Title) Login = ("Login", "Вход");
|
|
|
|
|
public static (string Url, string Title) Register = ("Register", "Регистрация");
|
|
|
|
|
public static (string Url, string Title) Privacy = ("Privacy", "Политика приватности");
|
2024-04-30 16:56:58 +04:00
|
|
|
|
|
|
|
|
|
public static List<(string Url, string Title)> MenuItemsOrder = new List<(string Url, string Title)>
|
|
|
|
|
{
|
2024-04-30 22:12:50 +04:00
|
|
|
|
Index, Courses, Diagnoses, Symptomes, Login, Register
|
2024-04-30 16:56:58 +04:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|