mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2025-07-25 21:04:01 +00:00
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; }
|
|
} |