From 64470b20f33c0d6586ec53f8e591503ac97edd0d Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Tue, 14 May 2024 23:24:11 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20=D0=BD=D0=B0=D0=B7?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20=D0=BA=D0=BE=D0=BB=D0=BE=D0=BD?= =?UTF-8?q?=D0=BA=D0=B8=20=D0=B2=20=D0=BC=D0=BE=D0=B4=D0=B5=D0=BB=D0=B8=20?= =?UTF-8?q?=D0=BF=D0=B0=D1=86=D0=B8=D0=B5=D0=BD=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Medical/MedicalDatabaseContracts/ViewModels/PatientViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Medical/MedicalDatabaseContracts/ViewModels/PatientViewModel.cs b/Medical/MedicalDatabaseContracts/ViewModels/PatientViewModel.cs index 0088bc3..0bdd3bb 100644 --- a/Medical/MedicalDatabaseContracts/ViewModels/PatientViewModel.cs +++ b/Medical/MedicalDatabaseContracts/ViewModels/PatientViewModel.cs @@ -10,7 +10,7 @@ namespace MedicalDatabaseContracts.ViewModels public DateTime Birthday { get; set; } [DisplayName("Вес, кг")] public int Weight { get; set; } - [DisplayName("Рост, кг")] + [DisplayName("Рост, см")] public int Height { get; set; } } }