using Newtonsoft.Json; namespace Pilz.Net.CloudProviders.Nextcloud.Client.LoginFlowV2.Ocs; public class OcsResponseLoginFlowV2Credentials { /// /// The server url the login credentials are for. /// [JsonProperty("server")] public string? Server { get; set; } /// /// The login name (username or password) used for the login. /// [JsonProperty("loginName")] public string? LoginName { get; set; } /// /// The app password that has been generated. /// [JsonProperty("appPassword")] public string? AppPassword { get; set; } }