This commit is contained in:
@@ -5,7 +5,7 @@ namespace AyaNova.Models
|
||||
|
||||
public class GlobalBizSettings
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
public long Id { get; set; }//this is always 1 as there is only ever one single global biz object
|
||||
@@ -14,12 +14,15 @@ namespace AyaNova.Models
|
||||
//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 bool SearchCaseSensitiveOnly { get; set; }
|
||||
|
||||
public bool NotificationSystemActive { get; set; }
|
||||
|
||||
public GlobalBizSettings()
|
||||
{
|
||||
Id=1;//always 1
|
||||
SearchCaseSensitiveOnly = false;
|
||||
{
|
||||
Id = 1;//always 1
|
||||
SearchCaseSensitiveOnly = false;
|
||||
NotificationSystemActive = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user