Created
April 11, 2018 15:28
-
-
Save hkakutalua/e9e44141b5896333dd37ee1de0e80b62 to your computer and use it in GitHub Desktop.
Passenger entity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Passenger : Entity<Passenger, Guid> | |
{ | |
public string FirstName { get; protected set; } | |
public string LastName { get; protected set; } | |
public string EmailAddress { get; protected set; } | |
public bool EmailConfirmed { get; set; } | |
public PhoneNumber PhoneNumber { get; protected set; } = PhoneNumber.NoPhoneNumber; | |
public string SmartphoneId { get; protected set; } | |
public string ProfilePhotoUri { get; protected set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment