correction of the last merge
continuous-integration/drone/push Build is failing Details

pull/44/head^2
Roxane ROSSETTO 2 years ago
parent 190e35b54b
commit a93132f712

@ -11,7 +11,7 @@ namespace Model
{
/// <summary>
/// A user is an entity with a name, a surname, mail, profilePict and a list of priority.
/// This user can login with a Id and password
/// This user can login with an Id and a password
/// </summary>
public class User : IEquatable<User>
{
@ -122,6 +122,10 @@ namespace Model
return Name.Equals(other.Name) && Surname.Equals(other.Surname) && Mail.Equals(other.Mail);
}
public override int GetHashCode()
{
throw new NotImplementedException();
}
#endregion
@ -150,6 +154,8 @@ namespace Model
}
#endregion

Loading…
Cancel
Save