this repo has no description
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 11 lines 304 B view raw
1using System.Text.Json.Serialization; 2 3namespace Atproto; 4 5public class Config { 6 [JsonInclude] public string Handle = ""; 7 [JsonInclude] public string Password = ""; 8 [JsonInclude] public string Save = ""; 9 [JsonInclude] public bool Autoconnect; 10 [JsonInclude] public bool Autoload; 11}