api/NetinaCMS.Common/Models/Api/HealthCheck.cs

12 lines
441 B
C#
Raw Permalink Normal View History

2024-03-24 12:35:42 +03:30
namespace NetinaCMS.Common.Models.Api
2024-03-09 19:53:01 +03:30
{
public class HealthCheck
{
public bool Health { get; set; }
public string Version { get; set; } = string.Empty;
public string TotalMemory { get; set; } = string.Empty;
public string StartAt { get; set; } = string.Empty;
public string StartAtPersian { get; set; } = string.Empty;
public string MachineName { get; set; } = string.Empty;
}
}