11 lines
336 B
C#
11 lines
336 B
C#
|
namespace MedicalDatabaseContracts
|
|||
|
{
|
|||
|
public class AbstractPersonModel : AbstractModel
|
|||
|
{
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
public string Surname { get; set; } = string.Empty;
|
|||
|
public string? Patronymic { get; set; }
|
|||
|
public string PhoneNumber { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|