Start some really basic persistence support. Buggy because of async missing

This commit is contained in:
Alexander Horner
2022-12-06 19:59:32 +00:00
parent 0a11d5a583
commit 6aa48fdd2f
2 changed files with 69 additions and 15 deletions

View File

@@ -1,4 +1,5 @@
using System.IO;
using Newtonsoft.Json;
namespace ntfysh_client
{
@@ -18,6 +19,7 @@ namespace ntfysh_client
public string Username { get; }
public string Password { get; }
[JsonIgnore]
public StreamReader Stream { get; }
}
}