18 lines
354 B
C#
18 lines
354 B
C#
namespace Shared.Models.AppConf
|
|
{
|
|
public class GCConf
|
|
{
|
|
public bool enable { get; set; }
|
|
|
|
public bool aggressive { get; set; }
|
|
|
|
public bool? Concurrent { get; set; }
|
|
|
|
public int? ConserveMemory { get; set; }
|
|
|
|
public int? HighMemoryPercent { get; set; }
|
|
|
|
public bool? RetainVM { get; set; }
|
|
}
|
|
}
|