Initial commit

This commit is contained in:
2026-05-25 17:21:51 -07:00
commit eb27d44cbf
26 changed files with 1003 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace Radium.DataExporter.Models.Common.Requests;
public class CompleteAuthLinkRequest
{
public required string Code { get; set; }
public required long AccountId { get; set; }
public required string SteamId { get; set; }
public required string SteamTicket { get; set; }
}