Add profiles domain, infra, API endpoints
This commit is contained in:
13
API/Contracts/Profiles/Requests/LoginRequest.cs
Normal file
13
API/Contracts/Profiles/Requests/LoginRequest.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using RecNet.Domain.Common;
|
||||
|
||||
namespace API.Contracts.Profiles.Requests;
|
||||
|
||||
public class LoginRequest
|
||||
{
|
||||
public required string AppVersion { get; set; }
|
||||
public required string DeviceId { get; set; }
|
||||
public required string PlatformAuthentication { get; set; }
|
||||
public required string PlatformId { get; set; }
|
||||
public PlatformType PlatformType { get; set; }
|
||||
public required string Username { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user