Implement admin endpoints

This commit is contained in:
Aurélie Delhaie
2022-06-14 21:03:31 +02:00
parent 4628cacc0b
commit 24a04e8c02
11 changed files with 307 additions and 127 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace OpenSaveCloudClient.Models.Remote
{
public class Registration
{
[JsonPropertyName("username")]
public string Username { get; set; }
[JsonPropertyName("password")]
public string Password { get; set; }
}
}