pschelpdesk/HetznerServer/Models/ServerSetting.cs
2024-11-19 20:16:45 +01:00

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;
}
}