pschelpdesk/Nextcloud/Models/Settings.cs
2024-11-11 09:07:13 +01:00

11 lines
200 B
C#

namespace PSCHelpdesk.Plugins.Nextcloud.Models;
public class Settings
{
public string ServerUrl { get; set; }
public Settings()
{
ServerUrl = "https://api.nextcloud.com";
}
}