Skip to content

Commit

Permalink
Track file
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-yagodin committed Dec 7, 2020
1 parent 11257ed commit b053c90
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions R7.Epsilon/Models/ClientVars.cs
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; }
}
}

0 comments on commit b053c90

Please sign in to comment.