9 lines
200 B
C#
9 lines
200 B
C#
namespace PluginBuilder.ViewModels.Home;
|
|
|
|
public class HealthCheckViewModel
|
|
{
|
|
public string Healthy { get; set; } = string.Empty;
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
}
|