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 16:56:58 +04:00
|
|
|
|
|
|
|
|
|
public static List<(string Url, string Title)> MenuItemsOrder = new List<(string Url, string Title)>
|
|
|
|
|
{
|
|
|
|
|
Index, Courses, Diagnoses, Symptomes
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|