pschelpdesk/HetznerServer/Models/ServerSetting.cs
2024-11-18 08:47:45 +01:00

15 lines
390 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 ServerSetting(long serverId, string pscApiKey, string fastBillId)
{
ServerId = serverId;
PscApiKey = pscApiKey;
FastBillId = fastBillId;
}
}