summaryrefslogtreecommitdiff
path: root/UserApi.cs
blob: dcddf2f0c566e7531fd70d055935d4675c83a09d (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace HyperBooru.ApiModels;

public record UserCreateRequest {
    public string Username { get; init; }
    public string Password { get; init; }
}

public record UserUpdateRequest {
    public string? Username { get; init; }
    public string? Password { get; init; }
}