This commit is contained in:
2020-05-19 16:03:38 +00:00
parent 54812b5469
commit dcd312b119
6 changed files with 429 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System.ComponentModel.DataAnnotations;
using Newtonsoft.Json;
namespace AyaNova.Models
{
public class GlobalOpsSettings
{
public long Id { get; set; }//this is always 1 as there is only ever one single global Ops object
public uint Concurrency { get; set; }
//Global settings
//Picklist and other searches override the normal case insensitive value
//this is precautionarily added for non latinate languages where it could be an issue
public bool SearchCaseSensitiveOnly {get;set;}
public GlobalOpsSettings()
{
Id=1;//always 1
SearchCaseSensitiveOnly = false;
}
}
}