12 lines
444 B
C#
12 lines
444 B
C#
namespace HamyanEdalat.Common.Models.Api
|
|
{
|
|
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;
|
|
}
|
|
} |