2023-10-10 17:02:38 +03:30
|
|
|
|
namespace DocuMed.Common.Models.Api
|
|
|
|
|
|
{
|
|
|
|
|
|
public class HealthCheck
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool Health { get; set; }
|
2023-11-18 13:02:16 +03:30
|
|
|
|
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;
|
2023-10-10 17:02:38 +03:30
|
|
|
|
}
|
|
|
|
|
|
}
|