Files
Moonlight/Moonlight/App/Database/Entities/PleskServer.cs
2023-04-29 10:09:40 +02:00

9 lines
240 B
C#

namespace Moonlight.App.Database.Entities;
public class PleskServer
{
public int Id { get; set; }
public string Name { get; set; } = "";
public string ApiUrl { get; set; } = "";
public string ApiKey { get; set; } = "";
}