Newer
Older
ReliableMessaging / src / PublicApi / AuthEndpoints / AuthenticateEndpoint.AuthenticateRequest.cs
@Derek Comartin Derek Comartin on 10 Apr 2023 191 bytes Init
namespace Microsoft.eShopWeb.PublicApi.AuthEndpoints;

public class AuthenticateRequest : BaseRequest
{
    public string Username { get; set; }
    public string Password { get; set; }
}