12 lines
306 B
C#
12 lines
306 B
C#
namespace qtc_api.Models
|
|
{
|
|
public class ServerConfig
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? AdminUserId { get; set; }
|
|
public bool IsDown { get; set; }
|
|
public string? IsDownMessage { get; set; }
|
|
}
|
|
}
|