Implemented databases. Fixed nav bars. Some fixes
This commit is contained in:
18
Moonlight/App/ApiClients/CloudPanel/Requests/AddDatabase.cs
Normal file
18
Moonlight/App/ApiClients/CloudPanel/Requests/AddDatabase.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Moonlight.App.ApiClients.CloudPanel.Requests;
|
||||
|
||||
public class AddDatabase
|
||||
{
|
||||
[JsonProperty("domainName")]
|
||||
public string DomainName { get; set; }
|
||||
|
||||
[JsonProperty("databaseName")]
|
||||
public string DatabaseName { get; set; }
|
||||
|
||||
[JsonProperty("databaseUserName")]
|
||||
public string DatabaseUserName { get; set; }
|
||||
|
||||
[JsonProperty("databaseUserPassword")]
|
||||
public string DatabaseUserPassword { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Moonlight.App.ApiClients.CloudPanel.Requests;
|
||||
|
||||
public class InstallLetsEncrypt
|
||||
{
|
||||
[JsonProperty("domainName")]
|
||||
public string DomainName { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user