Guest User

Untitled

a guest
Jun 26th, 2020
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 5.18 KB | None | 0 0
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6.  
  7. namespace frontend
  8. {
  9.     public class JsonProperties
  10.     {
  11.         [JsonProperty("norkart")]
  12.         public string Norkart { get; set; }
  13.  
  14.         [JsonProperty("info_landing_page_header")]
  15.         public string InfoLandingPageHeader { get; set; }
  16.  
  17.         [JsonProperty("header_welcome")]
  18.         public string HeaderWelcome { get; set; }
  19.  
  20.         [JsonProperty("status_logged_in")]
  21.         public string StatusLoggedIn { get; set; }
  22.  
  23.         [JsonProperty("button_next")]
  24.         public string ButtonNext { get; set; }
  25.  
  26.         [JsonProperty("prompt_login")]
  27.         public string PromptLogin { get; set; }
  28.  
  29.         [JsonProperty("username")]
  30.         public string Username { get; set; }
  31.  
  32.         [JsonProperty("password")]
  33.         public string Password { get; set; }
  34.  
  35.         [JsonProperty("button_login")]
  36.         public string ButtonLogin { get; set; }
  37.  
  38.         [JsonProperty("info_login_page_ask_for_resources")]
  39.         public string InfoLoginPageAskForResources { get; set; }
  40.  
  41.         [JsonProperty("info_login_page_resource_overview")]
  42.         public string InfoLoginPageResourceOverview { get; set; }
  43.  
  44.         [JsonProperty("about")]
  45.         public string About { get; set; }
  46.  
  47.         [JsonProperty("my_resources")]
  48.         public string MyResources { get; set; }
  49.  
  50.         [JsonProperty("get_access")]
  51.         public string GetAccess { get; set; }
  52.  
  53.         [JsonProperty("give_access")]
  54.         public string GiveAccess { get; set; }
  55.  
  56.         [JsonProperty("info_intro_paragraph")]
  57.         public string InfoIntroParagraph { get; set; }
  58.  
  59.         [JsonProperty("button_read_more")]
  60.         public string ButtonReadMore { get; set; }
  61.  
  62.         [JsonProperty("search_field_placeholder")]
  63.         public string SearchFieldPlaceholder { get; set; }
  64.  
  65.         [JsonProperty("header_ask_for_access")]
  66.         public string HeaderAskForAccess { get; set; }
  67.  
  68.         [JsonProperty("info_ask_for_access")]
  69.         public string InfoAskForAccess { get; set; }
  70.  
  71.         [JsonProperty("button_go_back")]
  72.         public string ButtonGoBack { get; set; }
  73.  
  74.         [JsonProperty("header_why")]
  75.         public string HeaderWhy { get; set; }
  76.  
  77.         [JsonProperty("header_my_resources")]
  78.         public string HeaderMyResources { get; set; }
  79.  
  80.         [JsonProperty("info_my_resources_paragraph")]
  81.         public string InfoMyResourcesParagraph { get; set; }
  82.  
  83.         [JsonProperty("timestamp_access_from_my_resources")]
  84.         public string TimestampAccessFromMyResources { get; set; }
  85.  
  86.         [JsonProperty("timestamp_access_to_my_resources")]
  87.         public string TimestampAccessToMyResources { get; set; }
  88.  
  89.         [JsonProperty("details_my_resources")]
  90.         public string DetailsMyResources { get; set; }
  91.  
  92.         [JsonProperty("you_are")]
  93.         public string YouAre { get; set; }
  94.  
  95.         [JsonProperty("role_member")]
  96.         public string RoleMember { get; set; }
  97.  
  98.         [JsonProperty("role_owner")]
  99.         public string RoleOwner { get; set; }
  100.  
  101.         [JsonProperty("button_ask_for_extended_access")]
  102.         public string ButtonAskForExtendedAccess { get; set; }
  103.  
  104.         [JsonProperty("error_no_search_result")]
  105.         public string ErrorNoSearchResult { get; set; }
  106.  
  107.         [JsonProperty("button_click_here")]
  108.         public string ButtonClickHere { get; set; }
  109.  
  110.         [JsonProperty("error_no_access")]
  111.         public string ErrorNoAccess { get; set; }
  112.  
  113.         [JsonProperty("results_found_prefix")]
  114.         public string ResultsFoundPrefix { get; set; }
  115.  
  116.         [JsonProperty("results_found_suffix_singular")]
  117.         public string ResultsFoundSuffixSingular { get; set; }
  118.  
  119.         [JsonProperty("results_found_suffix_multiple")]
  120.         public string ResultsFoundSuffixMultiple { get; set; }
  121.  
  122.         [JsonProperty("info_automatic_access")]
  123.         public string InfoAutomaticAccess { get; set; }
  124.  
  125.         [JsonProperty("dropdown_specify_purpose_placeholder")]
  126.         public string DropdownSpecifyPurposePlaceholder { get; set; }
  127.  
  128.         [JsonProperty("dropdown_access_duration_placeholder")]
  129.         public string DropdownAccessDurationPlaceholder { get; set; }
  130.  
  131.         [JsonProperty("button_get_automatic_access")]
  132.         public string ButtonGetAutomaticAccess { get; set; }
  133.  
  134.         [JsonProperty("info_approved_access")]
  135.         public string InfoApprovedAccess { get; set; }
  136.  
  137.         [JsonProperty("button_ask_for_access")]
  138.         public string ButtonAskForAccess { get; set; }
  139.  
  140.         [JsonProperty("info_ask_for_access_")]
  141.         public string JsonPropertiesInfoAskForAccess { get; set; }
  142.  
  143.         [JsonProperty("info_icon_product")]
  144.         public string InfoIconProduct { get; set; }
  145.  
  146.         [JsonProperty("info_icon_resource")]
  147.         public string InfoIconResource { get; set; }
  148.  
  149.         [JsonProperty("info_icon_security_group")]
  150.         public string InfoIconSecurityGroup { get; set; }
  151.  
  152.         [JsonProperty("header_new_requests")]
  153.         public string HeaderNewRequests { get; set; }
  154.  
  155.         [JsonProperty("header_log")]
  156.         public string HeaderLog { get; set; }
  157.     }
  158. }
Add Comment
Please, Sign In to add comment