17 lines
467 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel;
namespace MedicalDatabaseContracts.Models
{
public class Patient : AbstractPersonModel
{
[DisplayName("Пол")]
public char Gender { get; set; }
[DisplayName("Дата рождения")]
public DateOnly Birthday { get; set; }
[DisplayName("Вес, кг")]
public int Weight { get; set; }
[DisplayName("Рост, см")]
public int Height { get; set; }
}
}