File tree Expand file tree Collapse file tree 5 files changed +22
-3
lines changed
eFormApi.BasePn/Infrastructure Expand file tree Collapse file tree 5 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1+ namespace Microting . eFormApi . BasePn . Infrastructure . Consts
2+ {
3+ public static class LanguageNames
4+ {
5+ public const string English = "English" ;
6+ public const string Danish = "Danish" ;
7+ public const string German = "German" ;
8+ }
9+ }
Original file line number Diff line number Diff line change 1+ namespace Microting . eFormApi . BasePn . Infrastructure . Consts
2+ {
3+ public static class LocaleNames
4+ {
5+ public const string English = "en-US" ;
6+ public const string Danish = "da-DK" ;
7+ public const string German = "de-DE" ;
8+ }
9+ }
Original file line number Diff line number Diff line change 44
55 public class PluginMenuItemModel
66 {
7+ public string E2EId { get ; set ; }
78 public string Link { get ; set ; }
89 public string Name { get ; set ; }
910 public MenuItemTypeEnum Type { get ; set ; }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ public class PluginMenuTemplateModel
1010
1111 public List < PluginMenuTranslationModel > Translations
1212 = new List < PluginMenuTranslationModel > ( ) ;
13- public List < PluginPermissionModel > Permissions { get ; set ; }
14- = new List < PluginPermissionModel > ( ) ;
13+ public List < PluginMenuTemplatePermissionModel > Permissions { get ; set ; }
14+ = new List < PluginMenuTemplatePermissionModel > ( ) ;
1515 }
1616}
Original file line number Diff line number Diff line change 11namespace Microting . eFormApi . BasePn . Infrastructure . Models . Application . NavigationMenu
22{
3- public class PluginPermissionModel
3+ public class PluginMenuTemplatePermissionModel
44 {
55 public string ClaimName { get ; set ; }
66 public string PermissionName { get ; set ; }
You can’t perform that action at this time.
0 commit comments