Initial QMAX production app
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
namespace QMax.Api.Contracts;
|
||||
|
||||
public sealed record BeginMaxLoginRequest(string? PhoneNumber);
|
||||
public sealed record SubmitMaxCodeRequest(string Code);
|
||||
public sealed record MaxBridgeStatusDto(
|
||||
string Mode,
|
||||
bool IsAuthorized,
|
||||
string? LoginStage,
|
||||
string Status,
|
||||
string? Url,
|
||||
string? Title,
|
||||
string? LastError,
|
||||
DateTimeOffset UpdatedAt);
|
||||
|
||||
public sealed record MaxBrowserSnapshotDto(
|
||||
string? Url,
|
||||
string? Title,
|
||||
string BodyText,
|
||||
string ScreenshotPngBase64,
|
||||
DateTimeOffset CapturedAt);
|
||||
Reference in New Issue
Block a user