12 lines
374 B
C#
12 lines
374 B
C#
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; }
|
|
} |