-
-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathAppSettings.cs
More file actions
45 lines (39 loc) · 1.05 KB
/
AppSettings.cs
File metadata and controls
45 lines (39 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System.Collections.Generic;
using System.Linq.Dynamic.Core.CustomTypeProviders;
namespace System.Linq.Dynamic.Core.Tests.Helpers.Models
{
public static class AppSettings
{
public static Dictionary<string, string> SettingsProp { get; } = new()
{
{ "jwt", "test" }
};
public static Dictionary<string, string> SettingsField = new()
{
{ "jwt", "test" }
};
}
[DynamicLinqType]
public static class AppSettings2
{
public static Dictionary<string, string> SettingsProp { get; } = new()
{
{ "jwt", "test" }
};
public static Dictionary<string, string> SettingsField = new()
{
{ "jwt", "test" }
};
}
public class AppSettings3
{
public static Dictionary<string, string> SettingsProp { get; } = new()
{
{ "jwt", "test" }
};
public static Dictionary<string, string> SettingsField = new()
{
{ "jwt", "test" }
};
}
}