17 lines
485 B
C#
17 lines
485 B
C#
namespace PSCHelpdesk.Plugins.HetznerServer.Models;
|
|
|
|
public class ServerSetting
|
|
{
|
|
public long ServerId { get; set; }
|
|
public string PscApiKey { get; set; }
|
|
public string FastBillId { get; set; }
|
|
public string FastBillNr { get; set; }
|
|
|
|
public ServerSetting(long serverId, string pscApiKey, string fastBillId, string fastBillNr)
|
|
{
|
|
ServerId = serverId;
|
|
PscApiKey = pscApiKey;
|
|
FastBillId = fastBillId;
|
|
FastBillNr = fastBillNr;
|
|
}
|
|
} |