feature: online activation

This commit is contained in:
Gary Sharp
2024-12-27 14:28:56 +11:00
parent 39ba206831
commit b6dfaa3445
35 changed files with 2287 additions and 346 deletions
@@ -0,0 +1,15 @@
using System;
namespace Disco.Models.Services.Interop.DiscoServices.Activation
{
public class ChallengeModel
{
public byte[] Key { get; set; }
public Guid ActivationId { get; set; }
public string UserId { get; set; }
public long TimeStamp { get; set; }
public byte[] ChallengeResponse { get; set; }
public byte[] ChallengeResponseIv { get; set; }
public string RedirectUrl { get; set; }
}
}