diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-05-07 23:07:45 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-05-08 01:27:27 +1000 |
| commit | 1c2427084ba610553c49140a2ce604fa63ba37c9 (patch) | |
| tree | 2ba363154692b469ea2f8568c8825051fd293ecb /HyperBooru.cs | |
| parent | 4d3e88b9f54e893a6de49724538cd73c9dc6ea5f (diff) | |
v0.14av0.14a
Diffstat (limited to 'HyperBooru.cs')
| -rw-r--r-- | HyperBooru.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/HyperBooru.cs b/HyperBooru.cs index dac901a..4c41d96 100644 --- a/HyperBooru.cs +++ b/HyperBooru.cs @@ -7,6 +7,7 @@ namespace HyperBooru.ApiClient; public sealed class HBSession : IDisposable { public Media Media { get; private init; } public Tag Tag { get; private init; } + public User User { get; private init; } public Uri BaseUri { get; private init; } internal HttpClient HttpClient { get; private init; } @@ -35,6 +36,7 @@ public sealed class HBSession : IDisposable { Media = new(this); Tag = new(this); + User = new(this); } public async Task LoginAsync(string username, string password) { |
