18 lines
338 B
C#
18 lines
338 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace UniversityDataModels
|
|
{
|
|
public interface IPerson : IId
|
|
{
|
|
public string FirstName { get; }
|
|
|
|
public string LastName { get; }
|
|
|
|
public string MiddleName { get; }
|
|
|
|
public string PhoneNumber { get; }
|
|
|
|
public string Email { get; }
|
|
}
|
|
}
|