Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions FASTER Maintenance/Models/BasicCfg.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.ComponentModel;
using System.Globalization;
using Newtonsoft.Json;

// ReSharper disable once CheckNamespace
namespace FASTER.Models
Expand Down Expand Up @@ -125,6 +126,7 @@ public ushort MaxCustomFileSize
}
}

[JsonIgnore]
public string PerfPreset
{
get => "Custom";
Expand Down
2 changes: 2 additions & 0 deletions FASTER/Models/BasicCfg.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.ComponentModel;
using System.Globalization;
using System.Xml.Serialization;
using Newtonsoft.Json;

namespace FASTER.Models
{
Expand Down Expand Up @@ -150,6 +151,7 @@ public ushort MaxCustomFileSize
}

[XmlIgnore]
[JsonIgnore]
public string PerfPreset
{
get => "Custom";
Expand Down