10 lines
222 B
C#
10 lines
222 B
C#
using RecNet.Domain.Common;
|
|
|
|
namespace RecNet.Application.Profiles;
|
|
|
|
public sealed record LoginProfileCommand(
|
|
string DeviceId,
|
|
PlatformType PlatformType,
|
|
string PlatformId,
|
|
string PlatformAuthentication);
|