Фикс название колонки в модели пациента

This commit is contained in:
Никита Потапов 2024-05-14 23:24:11 +04:00
parent 19943dd5e3
commit 64470b20f3

View File

@ -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; }
}
}