-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11257ed
commit b053c90
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
|
||
namespace R7.Epsilon.Models | ||
{ | ||
public class ClientVars | ||
{ | ||
public int ActiveTabId { get; set; } | ||
|
||
public string PortalAlias { get; set; } | ||
|
||
public bool EnablePopups { get; set; } | ||
|
||
public bool InPopup { get; set; } | ||
|
||
public string CookiePrefix { get; set; } | ||
|
||
public bool IsEditMode { get; set; } | ||
|
||
public string FeedbackUrl { get; set; } | ||
|
||
public int FeedbackTabId { get; set; } | ||
|
||
public int FeedbackModuleId { get; set; } | ||
|
||
public bool IsSuperUser { get; set; } | ||
|
||
public bool IsAdmin { get; set; } | ||
|
||
public string DefaultThemeName { get; set; } | ||
|
||
public IDictionary<string, object> Themes { get; set; } | ||
|
||
[JsonProperty ("localization")] public IDictionary<string, string> Resources { get; set; } | ||
|
||
public IDictionary<string, string> QueryParams { get; set; } | ||
} | ||
} |