system-praktyk-api/src/InternshipSystem.Core/ValueObject/Mentor.cs

10 lines
261 B
C#

namespace InternshipSystem.Core
{
public struct Mentor
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public PhoneNumber PhoneNumber { get; set; }
}
}