mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
f178213fee
* The server has been replaced with the new CloudFlare Workers backend
12 lines
259 B
C#
12 lines
259 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Wabbajack.Downloaders.ModDB;
|
|
|
|
public class MegaToken
|
|
{
|
|
[JsonPropertyName("email")]
|
|
public string Email { get; set; }
|
|
|
|
[JsonPropertyName("password")]
|
|
public string Password { get; set; }
|
|
} |