10 lines
282 B
C#
10 lines
282 B
C#
namespace Moonlight.App.Database.Entities;
|
|
|
|
public class CloudPanel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; } = "";
|
|
public string ApiUrl { get; set; } = "";
|
|
public string ApiKey { get; set; } = "";
|
|
public string Host { get; set; } = "";
|
|
} |