Commit 5e798685 authored by hasan khaddour's avatar hasan khaddour

Rename Project Name.

parent 6628ae95
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSManagement.Contracts.Authentication
{
public record AuthenticationResponse(
Guid Id ,
String FirstName,
String LastName ,
String Email ,
String Token
);
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSManagement.Contracts.Authentication
{
public record LoginRequest(
String Email ,
String PassWorrd
);
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSManagement.Contracts.Authentication
{
public record RegisterRequest (
String FirstName ,
String LastName ,
String Email,
String Password
);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment