Initial commit
This commit is contained in:
18
Radium.DataExporter.Models/JsonContext/RecNetJsonContext.cs
Normal file
18
Radium.DataExporter.Models/JsonContext/RecNetJsonContext.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Radium.DataExporter.Models.Accounts;
|
||||
using Radium.DataExporter.Models.Authentication;
|
||||
using Radium.DataExporter.Models.Common.Requests;
|
||||
using Radium.DataExporter.Models.Common.Results;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Radium.DataExporter.Models.JsonContext;
|
||||
|
||||
[JsonSerializable(typeof(CompleteAuthLinkRequest))]
|
||||
[JsonSerializable(typeof(CompleteAuthLinkResult))]
|
||||
[JsonSerializable(typeof(List<CachedLogin>))]
|
||||
[JsonSerializable(typeof(CachedLogin))]
|
||||
[JsonSerializable(typeof(List<Account>))]
|
||||
[JsonSerializable(typeof(Account))]
|
||||
[JsonSerializable(typeof(RecNetError))]
|
||||
public partial class RecNetJsonContext : JsonSerializerContext
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user