Skip to content

Commit

Permalink
UserRequest with Login
Browse files Browse the repository at this point in the history
  • Loading branch information
o.nadymov committed Mar 5, 2024
1 parent 4588b58 commit 1542740
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/Spoleto.BookApi.Interfaces/Models/Auth/UserRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,18 @@ public class UserRequest
/// <summary>
/// Gets or sets the user's phone number.
/// </summary>
/// <remarks>
/// It is required if <see cref="Email"/> is not initialized.<br/>
/// In this case <see cref="Phone"/> is expected to be unique.
/// </remarks>
public string Phone { get; set; }

/// <summary>
/// Gets or sets the user's email address.
/// </summary>
/// <remarks>
/// It is required if <see cref="Phone"/> is not initialized.<br/>
/// In this case <see cref="Email"/> is expected to be unique.
/// </remarks>
public string Email { get; set; }

/// <summary>
/// Gets or sets the user's login name.
/// </summary>
public string Login { get; set; }

/// <summary>
/// Gets or sets the user's password.
/// </summary>
Expand Down

0 comments on commit 1542740

Please sign in to comment.