11 lines
200 B
C#
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";
|
|
}
|
|
} |