Révision fa2aa88f
.gitignore | ||
---|---|---|
1 |
## Ignore Visual Studio temporary files, build results, and |
|
2 |
## files generated by popular Visual Studio add-ons. |
|
3 |
|
|
4 |
# Visual Studio (>=2015) project-specific, machine local files |
|
5 |
.vs/ |
|
6 |
|
|
7 |
# ignore Xamarin.Android Resource.Designer.cs files |
|
8 |
**/*.Droid/**/[Rr]esource.[Dd]esigner.cs |
|
9 |
**/*.Android/**/[Rr]esource.[Dd]esigner.cs |
|
10 |
**/Android/**/[Rr]esource.[Dd]esigner.cs |
|
11 |
**/Droid/**/[Rr]esource.[Dd]esigner.cs |
|
12 |
|
|
13 |
# Build results |
|
14 |
[Dd]ebug/ |
|
15 |
[Dd]ebugPublic/ |
|
16 |
[Rr]elease/ |
|
17 |
x64/ |
|
18 |
build/ |
|
19 |
bld/ |
|
20 |
[Bb]in/ |
|
21 |
[Oo]bj/ |
|
22 |
|
|
23 |
INRAETemplate.zip |
|
24 |
|
INRAETemplate.sln | ||
---|---|---|
1 |
|
|
2 |
Microsoft Visual Studio Solution File, Format Version 12.00 |
|
3 |
# Visual Studio Version 17 |
|
4 |
VisualStudioVersion = 17.0.31611.283 |
|
5 |
MinimumVisualStudioVersion = 10.0.40219.1 |
|
6 |
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "INRAETemplate", "INRAETemplate\INRAETemplate.csproj", "{31B28C50-B7FC-431A-8EA7-CC96CEFFA5EB}" |
|
7 |
EndProject |
|
8 |
Global |
|
9 |
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
|
10 |
Debug|Any CPU = Debug|Any CPU |
|
11 |
Release|Any CPU = Release|Any CPU |
|
12 |
EndGlobalSection |
|
13 |
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
|
14 |
{31B28C50-B7FC-431A-8EA7-CC96CEFFA5EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
|
15 |
{31B28C50-B7FC-431A-8EA7-CC96CEFFA5EB}.Debug|Any CPU.Build.0 = Debug|Any CPU |
|
16 |
{31B28C50-B7FC-431A-8EA7-CC96CEFFA5EB}.Debug|Any CPU.Deploy.0 = Debug|Any CPU |
|
17 |
{31B28C50-B7FC-431A-8EA7-CC96CEFFA5EB}.Release|Any CPU.ActiveCfg = Release|Any CPU |
|
18 |
{31B28C50-B7FC-431A-8EA7-CC96CEFFA5EB}.Release|Any CPU.Build.0 = Release|Any CPU |
|
19 |
{31B28C50-B7FC-431A-8EA7-CC96CEFFA5EB}.Release|Any CPU.Deploy.0 = Release|Any CPU |
|
20 |
EndGlobalSection |
|
21 |
GlobalSection(SolutionProperties) = preSolution |
|
22 |
HideSolutionNode = FALSE |
|
23 |
EndGlobalSection |
|
24 |
GlobalSection(ExtensibilityGlobals) = postSolution |
|
25 |
SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} |
|
26 |
EndGlobalSection |
|
27 |
EndGlobal |
INRAETemplate/App.xaml | ||
---|---|---|
1 |
<?xml version = "1.0" encoding = "UTF-8" ?> |
|
2 |
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui" |
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" |
|
4 |
xmlns:local="clr-namespace:INRAETemplate" |
|
5 |
x:Class="INRAETemplate.App"> |
|
6 |
<Application.Resources> |
|
7 |
<ResourceDictionary> |
|
8 |
<ResourceDictionary.MergedDictionaries> |
|
9 |
<ResourceDictionary Source="Resources/Styles/Colors.xaml" /> |
|
10 |
<ResourceDictionary Source="Resources/Styles/Styles.xaml" /> |
|
11 |
</ResourceDictionary.MergedDictionaries> |
|
12 |
</ResourceDictionary> |
|
13 |
</Application.Resources> |
|
14 |
</Application> |
INRAETemplate/App.xaml.cs | ||
---|---|---|
1 |
namespace INRAETemplate; |
|
2 |
|
|
3 |
public partial class App : Application |
|
4 |
{ |
|
5 |
public App() |
|
6 |
{ |
|
7 |
InitializeComponent(); |
|
8 |
|
|
9 |
MainPage = new AppShell(); |
|
10 |
} |
|
11 |
} |
INRAETemplate/AppShell.xaml | ||
---|---|---|
1 |
<?xml version="1.0" encoding="UTF-8" ?> |
|
2 |
<Shell |
|
3 |
x:Class="INRAETemplate.AppShell" |
|
4 |
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" |
|
5 |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" |
|
6 |
xmlns:local="clr-namespace:INRAETemplate.View" |
|
7 |
Shell.FlyoutBehavior="Flyout"> |
|
8 |
|
|
9 |
|
|
10 |
<ShellContent |
|
11 |
Title="Vivant" |
|
12 |
Icon="goat.svg" |
|
13 |
FlyoutIcon="goat.svg" |
|
14 |
ContentTemplate="{DataTemplate local:VivantView}" |
|
15 |
Route="VivantView"/> |
|
16 |
|
|
17 |
<ShellContent |
|
18 |
Title="Settings" |
|
19 |
Icon="parameter.svg" |
|
20 |
FlyoutIcon="parameter.svg" |
|
21 |
ContentTemplate="{DataTemplate local:SettingsView}" |
|
22 |
Route="SettingsView" /> |
|
23 |
|
|
24 |
<ShellContent |
|
25 |
Title="About" |
|
26 |
Icon="info.svg" |
|
27 |
FlyoutIcon="info.svg" |
|
28 |
ContentTemplate="{DataTemplate local:AboutView}" |
|
29 |
Route="AboutView" /> |
|
30 |
|
|
31 |
<Shell.FlyoutFooter> |
|
32 |
<Grid Padding="10" ColumnDefinitions="auto,auto"> |
|
33 |
<Grid.GestureRecognizers> |
|
34 |
<TapGestureRecognizer Command="{Binding QuitterCommand}"/> |
|
35 |
</Grid.GestureRecognizers> |
|
36 |
<Image Grid.Column="0" Source="exit.png" HeightRequest="24" Margin="10,0,20,10"/> |
|
37 |
<Label Grid.Column="1" Text="Quitter" /> |
|
38 |
</Grid> |
|
39 |
</Shell.FlyoutFooter> |
|
40 |
|
|
41 |
</Shell> |
INRAETemplate/AppShell.xaml.cs | ||
---|---|---|
1 |
using INRAETemplate.View; |
|
2 |
using INRAETemplate.ViewModel; |
|
3 |
|
|
4 |
namespace INRAETemplate; |
|
5 |
[XamlCompilation(XamlCompilationOptions.Skip)] |
|
6 |
public partial class AppShell : Shell |
|
7 |
{ |
|
8 |
public AppShell() |
|
9 |
{ |
|
10 |
InitializeComponent(); |
|
11 |
this.BindingContext = new AppShellViewModel(); |
|
12 |
Routing.RegisterRoute(nameof(VivantView), typeof(VivantView)); |
|
13 |
Routing.RegisterRoute(nameof(VivantEditionView), typeof(VivantEditionView)); |
|
14 |
Routing.RegisterRoute(nameof(SettingsView), typeof(SettingsView)); |
|
15 |
Routing.RegisterRoute(nameof(AboutView), typeof(AboutView)); |
|
16 |
} |
|
17 |
|
|
18 |
} |
INRAETemplate/DAO/VivantDAO.cs | ||
---|---|---|
1 |
using CommunityToolkit.Maui.Alerts; |
|
2 |
using CommunityToolkit.Maui.Core; |
|
3 |
using INRAETemplate.Model; |
|
4 |
|
|
5 |
namespace INRAETemplate.DAO |
|
6 |
{ |
|
7 |
public static class VivantDAO |
|
8 |
{ |
|
9 |
public static List<Vivant> GetVivants() |
|
10 |
{ |
|
11 |
List<Vivant> vivants = new List<Vivant>(); |
|
12 |
Vivant v1 = new Vivant(1, "INRAE01"); |
|
13 |
Vivant v2 = new Vivant(2, "INRAE02"); |
|
14 |
Vivant v3 = new Vivant(3, "INRAE03"); |
|
15 |
vivants.Add(v1); |
|
16 |
vivants.Add(v2); |
|
17 |
vivants.Add(v3); |
|
18 |
return vivants; |
|
19 |
} |
|
20 |
|
|
21 |
public static Vivant GetVivantById(int id) |
|
22 |
{ |
|
23 |
Vivant vivant = GetVivants().FirstOrDefault(x => x.VivantId == id); |
|
24 |
return vivant; |
|
25 |
} |
|
26 |
|
|
27 |
public static async Task Save(Vivant vivant) |
|
28 |
{ |
|
29 |
await Task.Delay(1000); |
|
30 |
IToast t = Toast.Make("Enregistrement OK !", ToastDuration.Long); |
|
31 |
await t.Show(); |
|
32 |
} |
|
33 |
} |
|
34 |
} |
INRAETemplate/INRAETemplate.csproj | ||
---|---|---|
1 |
<Project Sdk="Microsoft.NET.Sdk"> |
|
2 |
|
|
3 |
<PropertyGroup> |
|
4 |
<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks> |
|
5 |
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks> |
|
6 |
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> |
|
7 |
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> --> |
|
8 |
<OutputType>Exe</OutputType> |
|
9 |
<RootNamespace>INRAETemplate</RootNamespace> |
|
10 |
<UseMaui>true</UseMaui> |
|
11 |
<SingleProject>true</SingleProject> |
|
12 |
<ImplicitUsings>enable</ImplicitUsings> |
|
13 |
|
|
14 |
<!-- Display name --> |
|
15 |
<ApplicationTitle>INRAETemplate</ApplicationTitle> |
|
16 |
|
|
17 |
<!-- App Identifier --> |
|
18 |
<ApplicationId>fr.inrae.sicpa.inraetemplate</ApplicationId> |
|
19 |
<ApplicationIdGuid>bc1dd680-ddc8-4aa4-9f6d-450f8f2d16b1</ApplicationIdGuid> |
|
20 |
|
|
21 |
<!-- Versions --> |
|
22 |
<ApplicationDisplayVersion>1.1</ApplicationDisplayVersion> |
|
23 |
<ApplicationVersion>2</ApplicationVersion> |
|
24 |
|
|
25 |
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> |
|
26 |
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> |
|
27 |
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion> |
|
28 |
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> |
|
29 |
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> |
|
30 |
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> |
|
31 |
</PropertyGroup> |
|
32 |
|
|
33 |
<ItemGroup> |
|
34 |
<!-- App Icon --> |
|
35 |
<MauiIcon Include="Resources\AppIcon\logo_inrae.svg" Color="#FFFFFF"/> |
|
36 |
|
|
37 |
<!-- Splash Screen --> |
|
38 |
<MauiSplashScreen Include="Resources\Images\logo_inrae.svg" Color="White" BaseSize="128,128" /> |
|
39 |
|
|
40 |
<!-- Images --> |
|
41 |
<MauiImage Include="Resources\Images\*" /> |
|
42 |
<MauiImage Include="Resources\Images\AjoutSuppr\*" /> |
|
43 |
<MauiImage Include="Resources\Images\Animaux\*" /> |
|
44 |
<MauiImage Include="Resources\Images\Liste\*" /> |
|
45 |
<MauiImage Include="Resources\Images\PeripheriqueConnexion\*" /> |
|
46 |
<MauiImage Include="Resources\Images\Sanitaire\*" /> |
|
47 |
<MauiImage Include="Resources\Images\Scientifique\*" /> |
|
48 |
<MauiImage Include="Resources\Images\Special\*" /> |
|
49 |
<MauiImage Include="Resources\Images\Utile\*" /> |
|
50 |
<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" /> |
|
51 |
|
|
52 |
<!-- Custom Fonts --> |
|
53 |
<MauiFont Include="Resources\Fonts\*" /> |
|
54 |
|
|
55 |
<!-- Raw Assets (also remove the "Resources\Raw" prefix) --> |
|
56 |
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> |
|
57 |
</ItemGroup> |
|
58 |
|
|
59 |
<ItemGroup> |
|
60 |
<PackageReference Include="CommunityToolkit.Maui" Version="5.0.0" /> |
|
61 |
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" /> |
|
62 |
</ItemGroup> |
|
63 |
|
|
64 |
<ItemGroup> |
|
65 |
<MauiXaml Update="View\AboutView.xaml"> |
|
66 |
<Generator>MSBuild:Compile</Generator> |
|
67 |
</MauiXaml> |
|
68 |
<MauiXaml Update="View\SettingsView.xaml"> |
|
69 |
<Generator>MSBuild:Compile</Generator> |
|
70 |
</MauiXaml> |
|
71 |
<MauiXaml Update="View\VivantEditionView.xaml"> |
|
72 |
<Generator>MSBuild:Compile</Generator> |
|
73 |
</MauiXaml> |
|
74 |
<MauiXaml Update="View\VivantView.xaml"> |
|
75 |
<Generator>MSBuild:Compile</Generator> |
|
76 |
</MauiXaml> |
|
77 |
</ItemGroup> |
|
78 |
|
|
79 |
</Project> |
INRAETemplate/INRAETemplate.csproj.user | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
3 |
<PropertyGroup> |
|
4 |
<IsFirstTimeProjectOpen>False</IsFirstTimeProjectOpen> |
|
5 |
<ActiveDebugFramework>net7.0-android</ActiveDebugFramework> |
|
6 |
<ActiveDebugProfile>Samsung SM-G736B (Android 14.0 - API 34)</ActiveDebugProfile> |
|
7 |
<SelectedPlatformGroup>PhysicalDevice</SelectedPlatformGroup> |
|
8 |
<DefaultDevice>pixel_5_-_api_26</DefaultDevice> |
|
9 |
</PropertyGroup> |
|
10 |
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-android|AnyCPU'"> |
|
11 |
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor> |
|
12 |
</PropertyGroup> |
|
13 |
<ItemGroup> |
|
14 |
<MauiXaml Update="View\AboutView.xaml"> |
|
15 |
<SubType>Designer</SubType> |
|
16 |
</MauiXaml> |
|
17 |
<MauiXaml Update="View\SettingsView.xaml"> |
|
18 |
<SubType>Designer</SubType> |
|
19 |
</MauiXaml> |
|
20 |
<MauiXaml Update="View\VivantEditionView.xaml"> |
|
21 |
<SubType>Designer</SubType> |
|
22 |
</MauiXaml> |
|
23 |
<MauiXaml Update="View\VivantView.xaml"> |
|
24 |
<SubType>Designer</SubType> |
|
25 |
</MauiXaml> |
|
26 |
</ItemGroup> |
|
27 |
</Project> |
INRAETemplate/MauiProgram.cs | ||
---|---|---|
1 |
using CommunityToolkit.Maui; |
|
2 |
using Microsoft.Extensions.Logging; |
|
3 |
|
|
4 |
namespace INRAETemplate; |
|
5 |
|
|
6 |
public static class MauiProgram |
|
7 |
{ |
|
8 |
public static MauiApp CreateMauiApp() |
|
9 |
{ |
|
10 |
var builder = MauiApp.CreateBuilder(); |
|
11 |
builder |
|
12 |
.UseMauiApp<App>() |
|
13 |
.UseMauiCommunityToolkit() |
|
14 |
.ConfigureFonts(fonts => |
|
15 |
{ |
|
16 |
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); |
|
17 |
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); |
|
18 |
fonts.AddFont("fa-brands.ttf", "FABrands"); |
|
19 |
fonts.AddFont("fa-regular.ttf", "FARegular"); |
|
20 |
fonts.AddFont("fa-solid.ttf", "FASolid"); |
|
21 |
}); |
|
22 |
|
|
23 |
#if DEBUG |
|
24 |
builder.Logging.AddDebug(); |
|
25 |
#endif |
|
26 |
|
|
27 |
return builder.Build(); |
|
28 |
} |
|
29 |
} |
INRAETemplate/Model/FaBrandIcons.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace SICPA_Parcelles.Model |
|
8 |
{ |
|
9 |
public static class FaBrandIcons |
|
10 |
{ |
|
11 |
public const string Hashtag = "\u0023"; |
|
12 |
public const string _0 = "\u0030"; |
|
13 |
public const string _1 = "\u0031"; |
|
14 |
public const string _2 = "\u0032"; |
|
15 |
public const string _3 = "\u0033"; |
|
16 |
public const string _4 = "\u0034"; |
|
17 |
public const string _5 = "\u0035"; |
|
18 |
public const string _6 = "\u0036"; |
|
19 |
public const string _7 = "\u0037"; |
|
20 |
public const string _8 = "\u0038"; |
|
21 |
public const string _9 = "\u0039"; |
|
22 |
public const string a = "\u0041"; |
|
23 |
public const string b = "\u0042"; |
|
24 |
public const string c = "\u0043"; |
|
25 |
public const string d = "\u0044"; |
|
26 |
public const string e = "\u0045"; |
|
27 |
public const string f = "\u0046"; |
|
28 |
public const string g = "\u0047"; |
|
29 |
public const string h = "\u0048"; |
|
30 |
public const string i = "\u0049"; |
|
31 |
public const string j = "\u004a"; |
|
32 |
public const string k = "\u004b"; |
|
33 |
public const string l = "\u004c"; |
|
34 |
public const string m = "\u004d"; |
|
35 |
public const string n = "\u004e"; |
|
36 |
public const string o = "\u004f"; |
|
37 |
public const string p = "\u0050"; |
|
38 |
public const string q = "\u0051"; |
|
39 |
public const string r = "\u0052"; |
|
40 |
public const string s = "\u0053"; |
|
41 |
public const string t = "\u0054"; |
|
42 |
public const string u = "\u0055"; |
|
43 |
public const string v = "\u0056"; |
|
44 |
public const string w = "\u0057"; |
|
45 |
public const string x = "\u0058"; |
|
46 |
public const string y = "\u0059"; |
|
47 |
public const string z = "\u005a"; |
|
48 |
public const string FirefoxBrowser = "\ue007"; |
|
49 |
public const string Ideal = "\ue013"; |
|
50 |
public const string Microblog = "\ue01a"; |
|
51 |
public const string PiedPiperSquare = "\ue01e"; |
|
52 |
public const string Unity = "\ue049"; |
|
53 |
public const string Dailymotion = "\ue052"; |
|
54 |
public const string InstagramSquare = "\ue055"; |
|
55 |
public const string Mixer = "\ue056"; |
|
56 |
public const string Shopify = "\ue057"; |
|
57 |
public const string Deezer = "\ue077"; |
|
58 |
public const string EdgeLegacy = "\ue078"; |
|
59 |
public const string GooglePay = "\ue079"; |
|
60 |
public const string Rust = "\ue07a"; |
|
61 |
public const string Tiktok = "\ue07b"; |
|
62 |
public const string Unsplash = "\ue07c"; |
|
63 |
public const string Cloudflare = "\ue07d"; |
|
64 |
public const string Guilded = "\ue07e"; |
|
65 |
public const string Hive = "\ue07f"; |
|
66 |
public const string _42Group = "\ue080"; |
|
67 |
public const string Instalod = "\ue081"; |
|
68 |
public const string OctopusDeploy = "\ue082"; |
|
69 |
public const string Perbyte = "\ue083"; |
|
70 |
public const string Uncharted = "\ue084"; |
|
71 |
public const string WatchmanMonitoring = "\ue087"; |
|
72 |
public const string Wodu = "\ue088"; |
|
73 |
public const string Wirsindhandwerk = "\ue2d0"; |
|
74 |
public const string Bots = "\ue340"; |
|
75 |
public const string Cmplid = "\ue360"; |
|
76 |
public const string Bilibili = "\ue3d9"; |
|
77 |
public const string Golang = "\ue40f"; |
|
78 |
public const string Pix = "\ue43a"; |
|
79 |
public const string Sitrox = "\ue44a"; |
|
80 |
public const string TwitterSquare = "\uf081"; |
|
81 |
public const string FacebookSquare = "\uf082"; |
|
82 |
public const string Linkedin = "\uf08c"; |
|
83 |
public const string GithubSquare = "\uf092"; |
|
84 |
public const string Twitter = "\uf099"; |
|
85 |
public const string Facebook = "\uf09a"; |
|
86 |
public const string Github = "\uf09b"; |
|
87 |
public const string Pinterest = "\uf0d2"; |
|
88 |
public const string PinterestSquare = "\uf0d3"; |
|
89 |
public const string GooglePlusSquare = "\uf0d4"; |
|
90 |
public const string GooglePlusG = "\uf0d5"; |
|
91 |
public const string LinkedinIn = "\uf0e1"; |
|
92 |
public const string GithubAlt = "\uf113"; |
|
93 |
public const string Maxcdn = "\uf136"; |
|
94 |
public const string Html5 = "\uf13b"; |
|
95 |
public const string Css3 = "\uf13c"; |
|
96 |
public const string Btc = "\uf15a"; |
|
97 |
public const string Youtube = "\uf167"; |
|
98 |
public const string Xing = "\uf168"; |
|
99 |
public const string XingSquare = "\uf169"; |
|
100 |
public const string Dropbox = "\uf16b"; |
|
101 |
public const string StackOverflow = "\uf16c"; |
|
102 |
public const string Instagram = "\uf16d"; |
|
103 |
public const string Flickr = "\uf16e"; |
|
104 |
public const string Adn = "\uf170"; |
|
105 |
public const string Bitbucket = "\uf171"; |
|
106 |
public const string Tumblr = "\uf173"; |
|
107 |
public const string TumblrSquare = "\uf174"; |
|
108 |
public const string Apple = "\uf179"; |
|
109 |
public const string Windows = "\uf17a"; |
|
110 |
public const string Android = "\uf17b"; |
|
111 |
public const string Linux = "\uf17c"; |
|
112 |
public const string Dribbble = "\uf17d"; |
|
113 |
public const string Skype = "\uf17e"; |
|
114 |
public const string Foursquare = "\uf180"; |
|
115 |
public const string Trello = "\uf181"; |
|
116 |
public const string Gratipay = "\uf184"; |
|
117 |
public const string Vk = "\uf189"; |
|
118 |
public const string Weibo = "\uf18a"; |
|
119 |
public const string Renren = "\uf18b"; |
|
120 |
public const string Pagelines = "\uf18c"; |
|
121 |
public const string StackExchange = "\uf18d"; |
|
122 |
public const string VimeoSquare = "\uf194"; |
|
123 |
public const string Slack = "\uf198"; |
|
124 |
public const string Wordpress = "\uf19a"; |
|
125 |
public const string Openid = "\uf19b"; |
|
126 |
public const string Yahoo = "\uf19e"; |
|
127 |
public const string Google = "\uf1a0"; |
|
128 |
public const string Reddit = "\uf1a1"; |
|
129 |
public const string RedditSquare = "\uf1a2"; |
|
130 |
public const string StumbleuponCircle = "\uf1a3"; |
|
131 |
public const string Stumbleupon = "\uf1a4"; |
|
132 |
public const string Delicious = "\uf1a5"; |
|
133 |
public const string Digg = "\uf1a6"; |
|
134 |
public const string PiedPiperPp = "\uf1a7"; |
|
135 |
public const string PiedPiperAlt = "\uf1a8"; |
|
136 |
public const string Drupal = "\uf1a9"; |
|
137 |
public const string Joomla = "\uf1aa"; |
|
138 |
public const string Behance = "\uf1b4"; |
|
139 |
public const string BehanceSquare = "\uf1b5"; |
|
140 |
public const string Steam = "\uf1b6"; |
|
141 |
public const string SteamSquare = "\uf1b7"; |
|
142 |
public const string Spotify = "\uf1bc"; |
|
143 |
public const string Deviantart = "\uf1bd"; |
|
144 |
public const string Soundcloud = "\uf1be"; |
|
145 |
public const string Vine = "\uf1ca"; |
|
146 |
public const string Codepen = "\uf1cb"; |
|
147 |
public const string Jsfiddle = "\uf1cc"; |
|
148 |
public const string Rebel = "\uf1d0"; |
|
149 |
public const string Empire = "\uf1d1"; |
|
150 |
public const string GitSquare = "\uf1d2"; |
|
151 |
public const string Git = "\uf1d3"; |
|
152 |
public const string HackerNews = "\uf1d4"; |
|
153 |
public const string TencentWeibo = "\uf1d5"; |
|
154 |
public const string Qq = "\uf1d6"; |
|
155 |
public const string Weixin = "\uf1d7"; |
|
156 |
public const string Slideshare = "\uf1e7"; |
|
157 |
public const string Twitch = "\uf1e8"; |
|
158 |
public const string Yelp = "\uf1e9"; |
|
159 |
public const string Paypal = "\uf1ed"; |
|
160 |
public const string GoogleWallet = "\uf1ee"; |
|
161 |
public const string CcVisa = "\uf1f0"; |
|
162 |
public const string CcMastercard = "\uf1f1"; |
|
163 |
public const string CcDiscover = "\uf1f2"; |
|
164 |
public const string CcAmex = "\uf1f3"; |
|
165 |
public const string CcPaypal = "\uf1f4"; |
|
166 |
public const string CcStripe = "\uf1f5"; |
|
167 |
public const string Lastfm = "\uf202"; |
|
168 |
public const string LastfmSquare = "\uf203"; |
|
169 |
public const string Ioxhost = "\uf208"; |
|
170 |
public const string Angellist = "\uf209"; |
|
171 |
public const string Buysellads = "\uf20d"; |
|
172 |
public const string Connectdevelop = "\uf20e"; |
|
173 |
public const string Dashcube = "\uf210"; |
|
174 |
public const string Forumbee = "\uf211"; |
|
175 |
public const string Leanpub = "\uf212"; |
|
176 |
public const string Sellsy = "\uf213"; |
|
177 |
public const string Shirtsinbulk = "\uf214"; |
|
178 |
public const string Simplybuilt = "\uf215"; |
|
179 |
public const string Skyatlas = "\uf216"; |
|
180 |
public const string PinterestP = "\uf231"; |
|
181 |
public const string Whatsapp = "\uf232"; |
|
182 |
public const string Viacoin = "\uf237"; |
|
183 |
public const string Medium = "\uf23a"; |
|
184 |
public const string YCombinator = "\uf23b"; |
|
185 |
public const string OptinMonster = "\uf23c"; |
|
186 |
public const string Opencart = "\uf23d"; |
|
187 |
public const string Expeditedssl = "\uf23e"; |
|
188 |
public const string CcJcb = "\uf24b"; |
|
189 |
public const string CcDinersClub = "\uf24c"; |
|
190 |
public const string CreativeCommons = "\uf25e"; |
|
191 |
public const string Gg = "\uf260"; |
|
192 |
public const string GgCircle = "\uf261"; |
|
193 |
public const string Odnoklassniki = "\uf263"; |
|
194 |
public const string OdnoklassnikiSquare = "\uf264"; |
|
195 |
public const string GetPocket = "\uf265"; |
|
196 |
public const string WikipediaW = "\uf266"; |
|
197 |
public const string Safari = "\uf267"; |
|
198 |
public const string Chrome = "\uf268"; |
|
199 |
public const string Firefox = "\uf269"; |
|
200 |
public const string Opera = "\uf26a"; |
|
201 |
public const string InternetExplorer = "\uf26b"; |
|
202 |
public const string Contao = "\uf26d"; |
|
203 |
public const string _500px = "\uf26e"; |
|
204 |
public const string Amazon = "\uf270"; |
|
205 |
public const string Houzz = "\uf27c"; |
|
206 |
public const string VimeoV = "\uf27d"; |
|
207 |
public const string BlackTie = "\uf27e"; |
|
208 |
public const string Fonticons = "\uf280"; |
|
209 |
public const string RedditAlien = "\uf281"; |
|
210 |
public const string Edge = "\uf282"; |
|
211 |
public const string Codiepie = "\uf284"; |
|
212 |
public const string Modx = "\uf285"; |
|
213 |
public const string FortAwesome = "\uf286"; |
|
214 |
public const string Usb = "\uf287"; |
|
215 |
public const string ProductHunt = "\uf288"; |
|
216 |
public const string Mixcloud = "\uf289"; |
|
217 |
public const string Scribd = "\uf28a"; |
|
218 |
public const string Bluetooth = "\uf293"; |
|
219 |
public const string BluetoothB = "\uf294"; |
|
220 |
public const string Gitlab = "\uf296"; |
|
221 |
public const string Wpbeginner = "\uf297"; |
|
222 |
public const string Wpforms = "\uf298"; |
|
223 |
public const string Envira = "\uf299"; |
|
224 |
public const string Glide = "\uf2a5"; |
|
225 |
public const string GlideG = "\uf2a6"; |
|
226 |
public const string Viadeo = "\uf2a9"; |
|
227 |
public const string ViadeoSquare = "\uf2aa"; |
|
228 |
public const string Snapchat = "\uf2ab"; |
|
229 |
public const string SnapchatSquare = "\uf2ad"; |
|
230 |
public const string PiedPiper = "\uf2ae"; |
|
231 |
public const string FirstOrder = "\uf2b0"; |
|
232 |
public const string Yoast = "\uf2b1"; |
|
233 |
public const string Themeisle = "\uf2b2"; |
|
234 |
public const string GooglePlus = "\uf2b3"; |
|
235 |
public const string FontAwesome = "\uf20c"; |
|
236 |
public const string Linode = "\uf2b8"; |
|
237 |
public const string Quora = "\uf2c4"; |
|
238 |
public const string FreeCodeCamp = "\uf2c5"; |
|
239 |
public const string Telegram = "\uf2c6"; |
|
240 |
public const string Bandcamp = "\uf2d5"; |
|
241 |
public const string Grav = "\uf2d6"; |
|
242 |
public const string Etsy = "\uf2d7"; |
|
243 |
public const string Imdb = "\uf2d8"; |
|
244 |
public const string Ravelry = "\uf2d9"; |
|
245 |
public const string Sellcast = "\uf2da"; |
|
246 |
public const string Superpowers = "\uf2dd"; |
|
247 |
public const string Wpexplorer = "\uf2de"; |
|
248 |
public const string Meetup = "\uf2e0"; |
|
249 |
public const string SquareFontAwesomeStroke = "\uf35c"; |
|
250 |
public const string AccessibleIcon = "\uf29b"; |
|
251 |
public const string Accusoft = "\uf369"; |
|
252 |
public const string Adversal = "\uf36a"; |
|
253 |
public const string Affiliatetheme = "\uf36b"; |
|
254 |
public const string Algolia = "\uf36c"; |
|
255 |
public const string Amilia = "\uf36d"; |
|
256 |
public const string Angrycreative = "\uf36e"; |
|
257 |
public const string AppStore = "\uf36f"; |
|
258 |
public const string AppStoreIos = "\uf370"; |
|
259 |
public const string Apper = "\uf371"; |
|
260 |
public const string Asymmetrik = "\uf372"; |
|
261 |
public const string Audible = "\uf373"; |
|
262 |
public const string Avianex = "\uf374"; |
|
263 |
public const string Aws = "\uf375"; |
|
264 |
public const string Bimobject = "\uf378"; |
|
265 |
public const string Bitcoin = "\uf379"; |
|
266 |
public const string Bity = "\uf37a"; |
|
267 |
public const string Blackberry = "\uf37b"; |
|
268 |
public const string Blogger = "\uf37c"; |
|
269 |
public const string BloggerB = "\uf37d"; |
|
270 |
public const string Buromobelexperte = "\uf37f"; |
|
271 |
public const string Centercode = "\uf380"; |
|
272 |
public const string Cloudscale = "\uf383"; |
|
273 |
public const string Cloudsmith = "\uf384"; |
|
274 |
public const string Cloudversify = "\uf385"; |
|
275 |
public const string Cpanel = "\uf388"; |
|
276 |
public const string Css3Alt = "\uf38b"; |
|
277 |
public const string Cuttlefish = "\uf38c"; |
|
278 |
public const string DAndD = "\uf38d"; |
|
279 |
public const string Deploydog = "\uf38e"; |
|
280 |
public const string Deskpro = "\uf38f"; |
|
281 |
public const string DigitalOcean = "\uf391"; |
|
282 |
public const string Discord = "\uf392"; |
|
283 |
public const string Discourse = "\uf393"; |
|
284 |
public const string Dochub = "\uf394"; |
|
285 |
public const string Docker = "\uf395"; |
|
286 |
public const string Draft2digital = "\uf396"; |
|
287 |
public const string DribbbleSquare = "\uf397"; |
|
288 |
public const string Dyalog = "\uf399"; |
|
289 |
public const string Earlybirds = "\uf39a"; |
|
290 |
public const string Erlang = "\uf39d"; |
|
291 |
public const string FacebookF = "\uf39e"; |
|
292 |
public const string FacebookMessenger = "\uf39f"; |
|
293 |
public const string Firstdraft = "\uf3a1"; |
|
294 |
public const string FonticonsFi = "\uf3a2"; |
|
295 |
public const string FortAwesomeAlt = "\uf3a3"; |
|
296 |
public const string Freebsd = "\uf3a4"; |
|
297 |
public const string Gitkraken = "\uf3a6"; |
|
298 |
public const string Gofore = "\uf3a7"; |
|
299 |
public const string Goodreads = "\uf3a8"; |
|
300 |
public const string GoodreadsG = "\uf3a9"; |
|
301 |
public const string GoogleDrive = "\uf3aa"; |
|
302 |
public const string GooglePlay = "\uf3ab"; |
|
303 |
public const string Gripfire = "\uf3ac"; |
|
304 |
public const string Grunt = "\uf3ad"; |
|
305 |
public const string Gulp = "\uf3ae"; |
|
306 |
public const string HackerNewsSquare = "\uf3af"; |
|
307 |
public const string HireAHelper = "\uf3b0"; |
|
308 |
public const string Hotjar = "\uf3b1"; |
|
309 |
public const string Hubspot = "\uf3b2"; |
|
310 |
public const string Itunes = "\uf3b4"; |
|
311 |
public const string ItunesNote = "\uf3b5"; |
|
312 |
public const string Jenkins = "\uf3b6"; |
|
313 |
public const string Joget = "\uf3b7"; |
|
314 |
public const string Js = "\uf3b8"; |
|
315 |
public const string JsSquare = "\uf3b9"; |
|
316 |
public const string Keycdn = "\uf3ba"; |
|
317 |
public const string Kickstarter = "\uf3bb"; |
|
318 |
public const string KickstarterK = "\uf3bc"; |
|
319 |
public const string Laravel = "\uf3bd"; |
|
320 |
public const string Line = "\uf3c0"; |
|
321 |
public const string Lyft = "\uf3c3"; |
|
322 |
public const string Magento = "\uf3c4"; |
|
323 |
public const string Medapps = "\uf3c6"; |
|
324 |
public const string Medrt = "\uf3c8"; |
|
325 |
public const string Microsoft = "\uf3ca"; |
|
326 |
public const string Mix = "\uf3cb"; |
|
327 |
public const string Mizuni = "\uf3cc"; |
|
328 |
public const string Monero = "\uf3d0"; |
|
329 |
public const string Napster = "\uf3d2"; |
|
330 |
public const string NodeJs = "\uf3d3"; |
|
331 |
public const string Npm = "\uf3d4"; |
|
332 |
public const string Ns8 = "\uf3d5"; |
|
333 |
public const string Nutritionix = "\uf3d6"; |
|
334 |
public const string Page4 = "\uf3d7"; |
|
335 |
public const string Palfed = "\uf3d8"; |
|
336 |
public const string Patreon = "\uf3d9"; |
|
337 |
public const string Periscope = "\uf3da"; |
|
338 |
public const string Phabricator = "\uf3db"; |
|
339 |
public const string PhoenixFramework = "\uf3dc"; |
|
340 |
public const string Playstation = "\uf3df"; |
|
341 |
public const string Pushed = "\uf3e1"; |
|
342 |
public const string Python = "\uf3e2"; |
|
343 |
public const string RedRiver = "\uf3e3"; |
|
344 |
public const string Wpressr = "\uf3e4"; |
|
345 |
public const string Replyd = "\uf3e6"; |
|
346 |
public const string Resolving = "\uf3e7"; |
|
347 |
public const string Rocketchat = "\uf3e8"; |
|
348 |
public const string Rockrms = "\uf3e9"; |
|
349 |
public const string Schlix = "\uf3ea"; |
|
350 |
public const string Searchengin = "\uf3eb"; |
|
351 |
public const string Servicestack = "\uf3ec"; |
|
352 |
public const string Sistrix = "\uf3ee"; |
|
353 |
public const string Speakap = "\uf3f3"; |
|
354 |
public const string Staylinked = "\uf3f5"; |
|
355 |
public const string SteamSymbol = "\uf3f6"; |
|
356 |
public const string StickerMule = "\uf3f7"; |
|
357 |
public const string Studiovinari = "\uf3f8"; |
|
358 |
public const string Supple = "\uf3f9"; |
|
359 |
public const string Uber = "\uf402"; |
|
360 |
public const string Uikit = "\uf403"; |
|
361 |
public const string Uniregistry = "\uf404"; |
|
362 |
public const string Untappd = "\uf405"; |
|
363 |
public const string Ussunnah = "\uf407"; |
|
364 |
public const string Vaadin = "\uf408"; |
|
365 |
public const string Viber = "\uf409"; |
|
366 |
public const string Vimeo = "\uf40a"; |
|
367 |
public const string Vnv = "\uf40b"; |
|
368 |
public const string WhatsappSquare = "\uf40c"; |
|
369 |
public const string Whmcs = "\uf40d"; |
|
370 |
public const string WordpressSimple = "\uf411"; |
|
371 |
public const string Xbox = "\uf412"; |
|
372 |
public const string Yandex = "\uf413"; |
|
373 |
public const string YandexInternational = "\uf414"; |
|
374 |
public const string ApplePay = "\uf415"; |
|
375 |
public const string CcApplePay = "\uf416"; |
|
376 |
public const string Fly = "\uf417"; |
|
377 |
public const string Node = "\uf419"; |
|
378 |
public const string Osi = "\uf41a"; |
|
379 |
public const string React = "\uf41b"; |
|
380 |
public const string Autoprefixer = "\uf41c"; |
|
381 |
public const string Less = "\uf41d"; |
|
382 |
public const string Sass = "\uf41e"; |
|
383 |
public const string Vuejs = "\uf41f"; |
|
384 |
public const string Angular = "\uf420"; |
|
385 |
public const string Aviato = "\uf421"; |
|
386 |
public const string Ember = "\uf423"; |
|
387 |
public const string SquareFontAwesome = "\uf425"; |
|
388 |
public const string Gitter = "\uf426"; |
|
389 |
public const string Hooli = "\uf427"; |
|
390 |
public const string Strava = "\uf428"; |
|
391 |
public const string Stripe = "\uf429"; |
|
392 |
public const string StripeS = "\uf42a"; |
|
393 |
public const string Typo3 = "\uf42b"; |
|
394 |
public const string AmazonPay = "\uf42c"; |
|
395 |
public const string CcAmazonPay = "\uf42d"; |
|
396 |
public const string Ethereum = "\uf42e"; |
|
397 |
public const string Korvue = "\uf42f"; |
|
398 |
public const string Elementor = "\uf430"; |
|
399 |
public const string YoutubeSquare = "\uf166"; |
|
400 |
public const string Flipboard = "\uf44d"; |
|
401 |
public const string Hips = "\uf452"; |
|
402 |
public const string Php = "\uf457"; |
|
403 |
public const string Quinscape = "\uf459"; |
|
404 |
public const string Readme = "\uf4d5"; |
|
405 |
public const string Java = "\uf4e4"; |
|
406 |
public const string PiedPiperHat = "\uf4e5"; |
|
407 |
public const string CreativeCommonsBy = "\uf4e7"; |
|
408 |
public const string CreativeCommonsNc = "\uf4e8"; |
|
409 |
public const string CreativeCommonsNcEu = "\uf4e9"; |
|
410 |
public const string CreativeCommonsNcJp = "\uf4ea"; |
|
411 |
public const string CreativeCommonsNd = "\uf4eb"; |
|
412 |
public const string CreativeCommonsPd = "\uf4ec"; |
|
413 |
public const string CreativeCommonsPdAlt = "\uf4ed"; |
|
414 |
public const string CreativeCommonsRemix = "\uf4ee"; |
|
415 |
public const string CreativeCommonsSa = "\uf4ef"; |
|
416 |
public const string CreativeCommonsSampling = "\uf4f0"; |
|
417 |
public const string CreativeCommonsSamplingPlus = "\uf4f1"; |
|
418 |
public const string CreativeCommonsShare = "\uf4f2"; |
|
419 |
public const string CreativeCommonsZero = "\uf4f3"; |
|
420 |
public const string Ebay = "\uf4f4"; |
|
421 |
public const string Keybase = "\uf4f5"; |
|
422 |
public const string Mastodon = "\uf4f6"; |
|
423 |
public const string RProject = "\uf4f7"; |
|
424 |
public const string Researchgate = "\uf4f8"; |
|
425 |
public const string Teamspeak = "\uf4f9"; |
|
426 |
public const string FirstOrderAlt = "\uf50a"; |
|
427 |
public const string Fulcrum = "\uf50b"; |
|
428 |
public const string GalacticRepublic = "\uf50c"; |
|
429 |
public const string GalacticSenate = "\uf50d"; |
|
430 |
public const string JediOrder = "\uf50e"; |
|
431 |
public const string Mandalorian = "\uf50f"; |
|
432 |
public const string OldRepublic = "\uf510"; |
|
433 |
public const string PhoenixSquadron = "\uf511"; |
|
434 |
public const string Sith = "\uf512"; |
|
435 |
public const string TradeFederation = "\uf513"; |
|
436 |
public const string WolfPackBattalion = "\uf514"; |
|
437 |
public const string Hornbill = "\uf592"; |
|
438 |
public const string Mailchimp = "\uf59e"; |
|
439 |
public const string Megaport = "\uf5a3"; |
|
440 |
public const string Nimblr = "\uf5a8"; |
|
441 |
public const string Rev = "\uf5b2"; |
|
442 |
public const string Shopware = "\uf5b5"; |
|
443 |
public const string Squarespace = "\uf5be"; |
|
444 |
public const string Themeco = "\uf5c6"; |
|
445 |
public const string Weebly = "\uf5cc"; |
|
446 |
public const string Wix = "\uf5cf"; |
|
447 |
public const string Ello = "\uf5f1"; |
|
448 |
public const string Hackerrank = "\uf5f7"; |
|
449 |
public const string Kaggle = "\uf5fa"; |
|
450 |
public const string Markdown = "\uf60f"; |
|
451 |
public const string Neos = "\uf612"; |
|
452 |
public const string Zhihu = "\uf63f"; |
|
453 |
public const string Alipay = "\uf642"; |
|
454 |
public const string TheRedYeti = "\uf69d"; |
|
455 |
public const string AcquisitionsIncorporated = "\uf6af"; |
|
456 |
public const string CriticalRole = "\uf6c9"; |
|
457 |
public const string DAndDBeyond = "\uf6ca"; |
|
458 |
public const string Dev = "\uf6cc"; |
|
459 |
public const string FantasyFlightGames = "\uf6dc"; |
|
460 |
public const string PennyArcade = "\uf704"; |
|
461 |
public const string WizardsOfTheCoast = "\uf730"; |
|
462 |
public const string ThinkPeaks = "\uf731"; |
|
463 |
public const string Reacteurope = "\uf75d"; |
|
464 |
public const string Artstation = "\uf77a"; |
|
465 |
public const string Atlassian = "\uf77b"; |
|
466 |
public const string CanadianMapleLeaf = "\uf785"; |
|
467 |
public const string Centos = "\uf789"; |
|
468 |
public const string Confluence = "\uf78d"; |
|
469 |
public const string Dhl = "\uf790"; |
|
470 |
public const string Diaspora = "\uf791"; |
|
471 |
public const string Fedex = "\uf797"; |
|
472 |
public const string Fedora = "\uf798"; |
|
473 |
public const string Figma = "\uf799"; |
|
474 |
public const string Intercom = "\uf7af"; |
|
475 |
public const string Invision = "\uf7b0"; |
|
476 |
public const string Jira = "\uf7b1"; |
|
477 |
public const string Mendeley = "\uf7b3"; |
|
478 |
public const string RaspberryPi = "\uf7bb"; |
|
479 |
public const string Redhat = "\uf7bc"; |
|
480 |
public const string Sketch = "\uf7c6"; |
|
481 |
public const string Sourcetree = "\uf7d3"; |
|
482 |
public const string Suse = "\uf7d6"; |
|
483 |
public const string Ubuntu = "\uf7df"; |
|
484 |
public const string Ups = "\uf7e0"; |
|
485 |
public const string Usps = "\uf7e1"; |
|
486 |
public const string Yarn = "\uf7e3"; |
|
487 |
public const string Airbnb = "\uf834"; |
|
488 |
public const string BattleNet = "\uf835"; |
|
489 |
public const string Bootstrap = "\uf836"; |
|
490 |
public const string Buffer = "\uf837"; |
|
491 |
public const string Chromecast = "\uf838"; |
|
492 |
public const string Evernote = "\uf839"; |
|
493 |
public const string ItchIo = "\uf83a"; |
|
494 |
public const string Salesforce = "\uf83b"; |
|
495 |
public const string SpeakerDeck = "\uf83c"; |
|
496 |
public const string Symfony = "\uf83d"; |
|
497 |
public const string Waze = "\uf83f"; |
|
498 |
public const string Yammer = "\uf840"; |
|
499 |
public const string GitAlt = "\uf841"; |
|
500 |
public const string Stackpath = "\uf842"; |
|
501 |
public const string CottonBureau = "\uf89e"; |
|
502 |
public const string BuyNLarge = "\uf8a6"; |
|
503 |
public const string Mdb = "\uf8ca"; |
|
504 |
public const string Orcid = "\uf8d2"; |
|
505 |
public const string Swift = "\uf8e1"; |
|
506 |
public const string Umbraco = "\uf8e8"; |
|
507 |
} |
|
508 |
} |
INRAETemplate/Model/FaRegularIcons.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace SICPA_Parcelles.Model |
|
8 |
{ |
|
9 |
public static class FaRegularIcons |
|
10 |
{ |
|
11 |
public const string Hashtag = "\u0023"; |
|
12 |
public const string _0 = "\u0030"; |
|
13 |
public const string _1 = "\u0031"; |
|
14 |
public const string _2 = "\u0032"; |
|
15 |
public const string _3 = "\u0033"; |
|
16 |
public const string _4 = "\u0034"; |
|
17 |
public const string _5 = "\u0035"; |
|
18 |
public const string _6 = "\u0036"; |
|
19 |
public const string _7 = "\u0037"; |
|
20 |
public const string _8 = "\u0038"; |
|
21 |
public const string _9 = "\u0039"; |
|
22 |
public const string a = "\u0041"; |
|
23 |
public const string b = "\u0042"; |
|
24 |
public const string c = "\u0043"; |
|
25 |
public const string d = "\u0044"; |
|
26 |
public const string e = "\u0045"; |
|
27 |
public const string f = "\u0046"; |
|
28 |
public const string g = "\u0047"; |
|
29 |
public const string h = "\u0048"; |
|
30 |
public const string i = "\u0049"; |
|
31 |
public const string j = "\u004a"; |
|
32 |
public const string k = "\u004b"; |
|
33 |
public const string l = "\u004c"; |
|
34 |
public const string m = "\u004d"; |
|
35 |
public const string n = "\u004e"; |
|
36 |
public const string o = "\u004f"; |
|
37 |
public const string p = "\u0050"; |
|
38 |
public const string q = "\u0051"; |
|
39 |
public const string r = "\u0052"; |
|
40 |
public const string s = "\u0053"; |
|
41 |
public const string t = "\u0054"; |
|
42 |
public const string u = "\u0055"; |
|
43 |
public const string v = "\u0056"; |
|
44 |
public const string w = "\u0057"; |
|
45 |
public const string x = "\u0058"; |
|
46 |
public const string y = "\u0059"; |
|
47 |
public const string z = "\u005a"; |
|
48 |
public const string Heart = "\u2665"; |
|
49 |
public const string Star = "\u2b50"; |
|
50 |
public const string User = "\uf007"; |
|
51 |
public const string Clock = "\uf017"; |
|
52 |
public const string RectangleList = "\uf022"; |
|
53 |
public const string Flag = "\uf024"; |
|
54 |
public const string Bookmark = "\uf02e"; |
|
55 |
public const string Image = "\uf03e"; |
|
56 |
public const string PenToSquare = "\uf044"; |
|
57 |
public const string CircleXmark = "\uf057"; |
|
58 |
public const string CircleCheck = "\uf058"; |
|
59 |
public const string CircleQuestion = "\uf059"; |
|
60 |
public const string Eye = "\uf06e"; |
|
61 |
public const string EyeSlash = "\uf070"; |
|
62 |
public const string CalendarDays = "\uf073"; |
|
63 |
public const string Comment = "\uf075"; |
|
64 |
public const string Folder = "\uf07b"; |
|
65 |
public const string FolderOpen = "\uf07c"; |
|
66 |
public const string ChartBar = "\uf080"; |
|
67 |
public const string Comments = "\uf086"; |
|
68 |
public const string StarHalf = "\uf089"; |
|
69 |
public const string Lemon = "\uf094"; |
|
70 |
public const string CreditCard = "\uf09d"; |
|
71 |
public const string HardDrive = "\uf0a0"; |
|
72 |
public const string HandPointRight = "\uf0a4"; |
|
73 |
public const string HandPointLeft = "\uf0a5"; |
|
74 |
public const string HandPointUp = "\u261d"; |
|
75 |
public const string HandPointDown = "\uf0a7"; |
|
76 |
public const string Copy = "\uf0c5"; |
|
77 |
public const string FloppyDisk = "\uf0c7"; |
|
78 |
public const string Square = "\u25a0"; |
|
79 |
public const string Envelope = "\u2709"; |
|
80 |
public const string Lightbulb = "\uf0eb"; |
|
81 |
public const string Bell = "\uf0a2"; |
|
82 |
public const string Hospital = "\uf0f8"; |
|
83 |
public const string SquarePlus = "\uf0fe"; |
|
84 |
public const string Circle = "\u25cf"; |
|
85 |
public const string FaceSmile = "\uf118"; |
|
86 |
public const string FaceFrown = "\u2639"; |
|
87 |
public const string FaceMeh = "\uf11a"; |
|
88 |
public const string Keyboard = "\u2328"; |
|
89 |
public const string Calendar = "\uf133"; |
|
90 |
public const string CirclePlay = "\uf01d"; |
|
91 |
public const string SquareMinus = "\uf146"; |
|
92 |
public const string SquareCheck = "\u2611"; |
|
93 |
public const string ShareFromSquare = "\uf045"; |
|
94 |
public const string Compass = "\uf14e"; |
|
95 |
public const string SquareCaretDown = "\uf150"; |
|
96 |
public const string SquareCaretUp = "\uf151"; |
|
97 |
public const string SquareCaretRight = "\uf152"; |
|
98 |
public const string File = "\uf016"; |
|
99 |
public const string FileLines = "\uf0f6"; |
|
100 |
public const string ThumbsUp = "\uf087"; |
|
101 |
public const string ThumbsDown = "\uf088"; |
|
102 |
public const string Sun = "\u2600"; |
|
103 |
public const string Moon = "\u23fe"; |
|
104 |
public const string SquareCaretLeft = "\uf191"; |
|
105 |
public const string CircleDot = "\uf192"; |
|
106 |
public const string Building = "\uf0f7"; |
|
107 |
public const string FilePdf = "\uf1c1"; |
|
108 |
public const string FileWord = "\uf1c2"; |
|
109 |
public const string FileExcel = "\uf1c3"; |
|
110 |
public const string FilePowerpoint = "\uf1c4"; |
|
111 |
public const string FileImage = "\uf1c5"; |
|
112 |
public const string FileZipper = "\uf1c6"; |
|
113 |
public const string FileAudio = "\uf1c7"; |
|
114 |
public const string FileVideo = "\uf1c8"; |
|
115 |
public const string FileCode = "\uf1c9"; |
|
116 |
public const string LifeRing = "\uf1cd"; |
|
117 |
public const string PaperPlane = "\uf1d8"; |
|
118 |
public const string Futbol = "\u26bd"; |
|
119 |
public const string Newspaper = "\uf1ea"; |
|
120 |
public const string BellSlash = "\uf1f6"; |
|
121 |
public const string Copyright = "\u00a9"; |
|
122 |
public const string ClosedCaptioning = "\uf20a"; |
|
123 |
public const string ObjectGroup = "\uf247"; |
|
124 |
public const string ObjectUngroup = "\uf248"; |
|
125 |
public const string NoteSticky = "\uf249"; |
|
126 |
public const string Clone = "\uf24d"; |
|
127 |
public const string Hourglass = "\u23f3"; |
|
128 |
public const string HandBackFist = "\uf255"; |
|
129 |
public const string Hand = "\u270b"; |
|
130 |
public const string HandScissors = "\uf257"; |
|
131 |
public const string HandLizard = "\uf258"; |
|
132 |
public const string HandSpock = "\uf259"; |
|
133 |
public const string HandPointer = "\uf25a"; |
|
134 |
public const string HandPeace = "\u270c"; |
|
135 |
public const string Registered = "\u00ae"; |
|
136 |
public const string CalendarPlus = "\uf271"; |
|
137 |
public const string CalendarMinus = "\uf272"; |
|
138 |
public const string CalendarXmark = "\uf273"; |
|
139 |
public const string CalendarCheck = "\uf274"; |
|
140 |
public const string Map = "\uf278"; |
|
141 |
public const string Message = "\uf27a"; |
|
142 |
public const string CirclePause = "\uf28b"; |
|
143 |
public const string CircleStop = "\uf28d"; |
|
144 |
public const string FontAwesome = "\uf20c"; |
|
145 |
public const string Handshake = "\uf2b5"; |
|
146 |
public const string EnvelopeOpen = "\uf2b6"; |
|
147 |
public const string AddressBook = "\uf2b9"; |
|
148 |
public const string AddressCard = "\uf2bb"; |
|
149 |
public const string CircleUser = "\uf2bd"; |
|
150 |
public const string IdBadge = "\uf2c1"; |
|
151 |
public const string IdCard = "\uf2c2"; |
|
152 |
public const string WindowMaximize = "\uf2d0"; |
|
153 |
public const string WindowMinimize = "\uf2d1"; |
|
154 |
public const string WindowRestore = "\uf2d2"; |
|
155 |
public const string Snowflake = "\u2744"; |
|
156 |
public const string TrashCan = "\uf014"; |
|
157 |
public const string Images = "\uf302"; |
|
158 |
public const string Clipboard = "\uf328"; |
|
159 |
public const string CircleDown = "\uf01a"; |
|
160 |
public const string CircleLeft = "\uf190"; |
|
161 |
public const string CircleRight = "\uf18e"; |
|
162 |
public const string CircleUp = "\uf01b"; |
|
163 |
public const string Gem = "\uf3a5"; |
|
164 |
public const string MoneyBill1 = "\uf3d1"; |
|
165 |
public const string RectangleXmark = "\uf2d4"; |
|
166 |
public const string ChessBishop = "\u265d"; |
|
167 |
public const string ChessKing = "\u265a"; |
|
168 |
public const string ChessKnight = "\u265e"; |
|
169 |
public const string ChessPawn = "\u265f"; |
|
170 |
public const string ChessQueen = "\u265b"; |
|
171 |
public const string ChessRook = "\u265c"; |
|
172 |
public const string SquareFull = "\u2b1b"; |
|
173 |
public const string CommentDots = "\uf27b"; |
|
174 |
public const string FaceSmileWink = "\uf4da"; |
|
175 |
public const string FaceAngry = "\uf556"; |
|
176 |
public const string FaceDizzy = "\uf567"; |
|
177 |
public const string FaceFlushed = "\uf579"; |
|
178 |
public const string FaceFrownOpen = "\uf57a"; |
|
179 |
public const string FaceGrimace = "\uf57f"; |
|
180 |
public const string FaceGrin = "\uf580"; |
|
181 |
public const string FaceGrinWide = "\uf581"; |
|
182 |
public const string FaceGrinBeam = "\uf582"; |
|
183 |
public const string FaceGrinBeamSweat = "\uf583"; |
|
184 |
public const string FaceGrinHearts = "\uf584"; |
|
185 |
public const string FaceGrinSquint = "\uf585"; |
|
186 |
public const string FaceGrinSquintTears = "\uf586"; |
|
187 |
public const string FaceGrinStars = "\uf587"; |
|
188 |
public const string FaceGrinTears = "\uf588"; |
|
189 |
public const string FaceGrinTongue = "\uf589"; |
|
190 |
public const string FaceGrinTongueSquint = "\uf58a"; |
|
191 |
public const string FaceGrinTongueWink = "\uf58b"; |
|
192 |
public const string FaceGrinWink = "\uf58c"; |
|
193 |
public const string FaceKiss = "\uf596"; |
|
194 |
public const string FaceKissBeam = "\uf597"; |
|
195 |
public const string FaceKissWinkHeart = "\uf598"; |
|
196 |
public const string FaceLaugh = "\uf599"; |
|
197 |
public const string FaceLaughBeam = "\uf59a"; |
|
198 |
public const string FaceLaughSquint = "\uf59b"; |
|
199 |
public const string FaceLaughWink = "\uf59c"; |
|
200 |
public const string FaceMehBlank = "\uf5a4"; |
|
201 |
public const string FaceRollingEyes = "\uf5a5"; |
|
202 |
public const string FaceSadCry = "\uf5b3"; |
|
203 |
public const string FaceSadTear = "\uf5b4"; |
|
204 |
public const string FaceSmileBeam = "\uf5b8"; |
|
205 |
public const string FaceSurprise = "\uf5c2"; |
|
206 |
public const string FaceTired = "\uf5c8"; |
|
207 |
} |
|
208 |
} |
INRAETemplate/Model/FaSolidIcons.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace SICPA_Parcelles.Model |
|
8 |
{ |
|
9 |
public static class FaSolidIcons |
|
10 |
{ |
|
11 |
public const string Exclamation = "\u0021"; |
|
12 |
public const string Hashtag = "\u0023"; |
|
13 |
public const string DollarSign = "\u0024"; |
|
14 |
public const string Percent = "\u0025"; |
|
15 |
public const string Asterisk = "\u002a"; |
|
16 |
public const string Plus = "\u002b"; |
|
17 |
public const string _0 = "\u0030"; |
|
18 |
public const string _1 = "\u0031"; |
|
19 |
public const string _2 = "\u0032"; |
|
20 |
public const string _3 = "\u0033"; |
|
21 |
public const string _4 = "\u0034"; |
|
22 |
public const string _5 = "\u0035"; |
|
23 |
public const string _6 = "\u0036"; |
|
24 |
public const string _7 = "\u0037"; |
|
25 |
public const string _8 = "\u0038"; |
|
26 |
public const string _9 = "\u0039"; |
|
27 |
public const string LessThan = "\u003c"; |
|
28 |
public const string Equals = "\u003d"; |
|
29 |
public const string GreaterThan = "\u003e"; |
|
30 |
public const string Question = "\u003f"; |
|
31 |
public const string At = "\u0040"; |
|
32 |
public const string a = "\u0041"; |
|
33 |
public const string b = "\u0042"; |
|
34 |
public const string c = "\u0043"; |
|
35 |
public const string d = "\u0044"; |
|
36 |
public const string e = "\u0045"; |
|
37 |
public const string f = "\u0046"; |
|
38 |
public const string g = "\u0047"; |
|
39 |
public const string h = "\u0048"; |
|
40 |
public const string i = "\u0049"; |
|
41 |
public const string j = "\u004a"; |
|
42 |
public const string k = "\u004b"; |
|
43 |
public const string l = "\u004c"; |
|
44 |
public const string m = "\u004d"; |
|
45 |
public const string n = "\u004e"; |
|
46 |
public const string o = "\u004f"; |
|
47 |
public const string p = "\u0050"; |
|
48 |
public const string q = "\u0051"; |
|
49 |
public const string r = "\u0052"; |
|
50 |
public const string s = "\u0053"; |
|
51 |
public const string t = "\u0054"; |
|
52 |
public const string u = "\u0055"; |
|
53 |
public const string v = "\u0056"; |
|
54 |
public const string w = "\u0057"; |
|
55 |
public const string x = "\u0058"; |
|
56 |
public const string y = "\u0059"; |
|
57 |
public const string z = "\u005a"; |
|
58 |
public const string Faucet = "\ue005"; |
|
59 |
public const string Trailer = "\ue041"; |
|
60 |
public const string Bacteria = "\ue059"; |
|
61 |
public const string Bacterium = "\ue05a"; |
|
62 |
public const string BoxTissue = "\ue05b"; |
|
63 |
public const string HandHoldingMedical = "\ue05c"; |
|
64 |
public const string HandSparkles = "\ue05d"; |
|
65 |
public const string HandsBubbles = "\ue05e"; |
|
66 |
public const string HandshakeSimpleSlash = "\ue05f"; |
|
67 |
public const string HandshakeSlash = "\ue060"; |
|
68 |
public const string HeadSideCough = "\ue061"; |
|
69 |
public const string HeadSideCoughSlash = "\ue062"; |
|
70 |
public const string HeadSideMask = "\ue063"; |
|
71 |
public const string HeadSideVirus = "\ue064"; |
|
72 |
public const string HouseLaptop = "\ue066"; |
|
73 |
public const string LungsVirus = "\ue067"; |
|
74 |
public const string PeopleArrowsLeftRight = "\ue068"; |
|
75 |
public const string PlaneSlash = "\ue069"; |
|
76 |
public const string PumpMedical = "\ue06a"; |
|
77 |
public const string PumpSoap = "\ue06b"; |
|
78 |
public const string ShieldVirus = "\ue06c"; |
|
79 |
public const string Sink = "\ue06d"; |
|
80 |
public const string Soap = "\ue06e"; |
|
81 |
public const string Stopwatch20 = "\ue06f"; |
|
82 |
public const string ShopSlash = "\ue070"; |
|
83 |
public const string StoreSlash = "\ue071"; |
|
84 |
public const string ToiletPaperSlash = "\ue072"; |
|
85 |
public const string UsersSlash = "\ue073"; |
|
86 |
public const string Virus = "\ue074"; |
|
87 |
public const string VirusSlash = "\ue075"; |
|
88 |
public const string Viruses = "\ue076"; |
|
89 |
public const string Vest = "\ue085"; |
|
90 |
public const string VestPatches = "\ue086"; |
|
91 |
public const string ArrowTrendDown = "\ue097"; |
|
92 |
public const string ArrowTrendUp = "\ue098"; |
|
93 |
public const string ArrowUpFromBracket = "\ue09a"; |
|
94 |
public const string AustralSign = "\ue0a9"; |
|
95 |
public const string BahtSign = "\ue0ac"; |
|
96 |
public const string BitcoinSign = "\ue0b4"; |
|
97 |
public const string CameraRotate = "\ue0d8"; |
|
98 |
public const string CediSign = "\ue0df"; |
|
99 |
public const string ChartGantt = "\ue0e4"; |
|
100 |
public const string Clapperboard = "\ue131"; |
|
101 |
public const string Clover = "\ue139"; |
|
102 |
public const string CodeCompare = "\ue13a"; |
|
103 |
public const string CodeFork = "\ue13b"; |
|
104 |
public const string CodePullRequest = "\ue13c"; |
|
105 |
public const string ColonSign = "\ue140"; |
|
106 |
public const string CruzeiroSign = "\ue152"; |
|
107 |
public const string DongSign = "\ue169"; |
|
108 |
public const string Elevator = "\ue16d"; |
|
109 |
public const string FilterCircleXmark = "\ue17b"; |
|
110 |
public const string FlorinSign = "\ue184"; |
|
111 |
public const string FrancSign = "\ue18f"; |
|
112 |
public const string GuaraniSign = "\ue19a"; |
|
113 |
public const string Gun = "\ue19b"; |
|
114 |
public const string HandsClapping = "\ue1a8"; |
|
115 |
public const string HouseUser = "\ue1b0"; |
|
116 |
public const string IndianRupeeSign = "\ue1bc"; |
|
117 |
public const string KipSign = "\ue1c4"; |
|
118 |
public const string LariSign = "\ue1c8"; |
|
119 |
public const string LitecoinSign = "\ue1d3"; |
|
120 |
public const string ManatSign = "\ue1d5"; |
|
121 |
public const string MaskFace = "\ue1d7"; |
|
122 |
public const string MillSign = "\ue1ed"; |
|
123 |
public const string NairaSign = "\ue1f6"; |
|
124 |
public const string Panorama = "\ue209"; |
|
125 |
public const string PesetaSign = "\ue221"; |
|
126 |
public const string PesoSign = "\ue222"; |
|
127 |
public const string RupiahSign = "\ue23d"; |
|
128 |
public const string Stairs = "\ue289"; |
|
129 |
public const string Timeline = "\ue29c"; |
|
130 |
public const string TurkishLiraSign = "\ue2bb"; |
|
131 |
public const string Vault = "\ue2c5"; |
|
132 |
public const string HouseChimney = "\ue3af"; |
|
133 |
public const string HouseCrack = "\ue3b1"; |
|
134 |
public const string HouseMedical = "\ue3b2"; |
|
135 |
public const string CentSign = "\ue3f5"; |
|
136 |
public const string PlusMinus = "\ue43c"; |
|
137 |
public const string Sailboat = "\ue445"; |
|
138 |
public const string Section = "\ue447"; |
|
139 |
public const string MartiniGlassEmpty = "\uf000"; |
|
140 |
public const string Music = "\uf001"; |
|
141 |
public const string MagnifyingGlass = "\uf002"; |
|
142 |
public const string Heart = "\u2665"; |
|
143 |
public const string Star = "\u2b50"; |
|
144 |
public const string User = "\uf007"; |
|
145 |
public const string Film = "\uf008"; |
|
146 |
public const string TableCellsLarge = "\uf009"; |
|
147 |
public const string TableCells = "\uf00a"; |
|
148 |
public const string TableList = "\uf00b"; |
|
149 |
public const string Check = "\u2713"; |
|
150 |
public const string Xmark = "\u00d7"; |
|
151 |
public const string MagnifyingGlassPlus = "\uf00e"; |
|
152 |
public const string MagnifyingGlassMinus = "\uf010"; |
|
153 |
public const string PowerOff = "\u23fb"; |
|
154 |
public const string Signal = "\uf012"; |
|
155 |
public const string Gear = "\u2699"; |
|
156 |
public const string House = "\uf015"; |
|
157 |
public const string Clock = "\uf017"; |
|
158 |
public const string Road = "\uf018"; |
|
159 |
public const string Download = "\uf019"; |
|
160 |
public const string Inbox = "\uf01c"; |
|
161 |
public const string ArrowRotateRight = "\u21bb"; |
|
162 |
public const string ArrowsRotate = "\uf021"; |
|
163 |
public const string RectangleList = "\uf022"; |
|
164 |
public const string Lock = "\uf023"; |
|
165 |
public const string Flag = "\uf024"; |
|
166 |
public const string Headphones = "\uf025"; |
|
167 |
public const string VolumeOff = "\uf026"; |
|
168 |
public const string VolumeLow = "\uf027"; |
|
169 |
public const string VolumeHigh = "\uf028"; |
|
170 |
public const string Qrcode = "\uf029"; |
|
171 |
public const string Barcode = "\uf02a"; |
|
172 |
public const string Tag = "\uf02b"; |
|
173 |
public const string Tags = "\uf02c"; |
|
174 |
public const string Book = "\uf02d"; |
|
175 |
public const string Bookmark = "\uf02e"; |
|
176 |
public const string Print = "\u2399"; |
|
177 |
public const string Camera = "\uf030"; |
|
178 |
public const string Font = "\uf031"; |
|
179 |
public const string Bold = "\uf032"; |
|
180 |
public const string Italic = "\uf033"; |
|
181 |
public const string TextHeight = "\uf034"; |
|
182 |
public const string TextWidth = "\uf035"; |
|
183 |
public const string AlignLeft = "\uf036"; |
|
184 |
public const string AlignCenter = "\uf037"; |
|
185 |
public const string AlignRight = "\uf038"; |
|
186 |
public const string AlignJustify = "\uf039"; |
|
187 |
public const string List = "\uf03a"; |
|
188 |
public const string Outdent = "\uf03b"; |
|
189 |
public const string Indent = "\uf03c"; |
|
190 |
public const string Video = "\uf03d"; |
|
191 |
public const string Image = "\uf03e"; |
|
192 |
public const string LocationPin = "\uf041"; |
|
193 |
public const string CircleHalfStroke = "\u25d0"; |
|
194 |
public const string Droplet = "\uf043"; |
|
195 |
public const string PenToSquare = "\uf044"; |
|
196 |
public const string BackwardStep = "\uf048"; |
|
197 |
public const string BackwardFast = "\u23ee"; |
|
198 |
public const string Backward = "\u23ea"; |
|
199 |
public const string Play = "\u25b6"; |
|
200 |
public const string Pause = "\u23f8"; |
|
201 |
public const string Stop = "\u23f9"; |
|
202 |
public const string Forward = "\u23e9"; |
|
203 |
public const string ForwardFast = "\u23ed"; |
|
204 |
public const string ForwardStep = "\uf051"; |
|
205 |
public const string Eject = "\u23cf"; |
|
206 |
public const string ChevronLeft = "\u2329"; |
|
207 |
public const string ChevronRight = "\u232a"; |
|
208 |
public const string CirclePlus = "\uf055"; |
|
209 |
public const string CircleMinus = "\uf056"; |
|
210 |
public const string CircleXmark = "\uf057"; |
|
211 |
public const string CircleCheck = "\uf058"; |
|
212 |
public const string CircleQuestion = "\uf059"; |
|
213 |
public const string CircleInfo = "\uf05a"; |
|
214 |
public const string Crosshairs = "\uf05b"; |
|
215 |
public const string Ban = "\uf05e"; |
|
216 |
public const string ArrowLeft = "\u2190"; |
|
217 |
public const string ArrowRight = "\u2192"; |
|
218 |
public const string ArrowUp = "\u2191"; |
|
219 |
public const string ArrowDown = "\u2193"; |
|
220 |
public const string Share = "\uf064"; |
|
221 |
public const string Expand = "\uf065"; |
|
222 |
public const string Compress = "\uf066"; |
|
223 |
public const string Minus = "\u2013"; |
|
224 |
public const string CircleExclamation = "\uf06a"; |
|
225 |
public const string Gift = "\uf06b"; |
|
226 |
public const string Leaf = "\uf06c"; |
|
227 |
public const string Fire = "\uf06d"; |
|
228 |
public const string Eye = "\uf06e"; |
|
229 |
public const string EyeSlash = "\uf070"; |
|
230 |
public const string TriangleExclamation = "\u26a0"; |
|
231 |
public const string Plane = "\uf072"; |
|
232 |
public const string CalendarDays = "\uf073"; |
|
233 |
public const string Shuffle = "\uf074"; |
|
234 |
public const string Comment = "\uf075"; |
|
235 |
public const string Magnet = "\uf076"; |
|
236 |
public const string ChevronUp = "\uf077"; |
|
237 |
public const string ChevronDown = "\uf078"; |
|
238 |
public const string Retweet = "\uf079"; |
|
239 |
public const string CartShopping = "\uf07a"; |
|
240 |
public const string Folder = "\uf07b"; |
|
241 |
public const string FolderOpen = "\uf07c"; |
|
242 |
public const string ChartBar = "\uf080"; |
|
243 |
public const string CameraRetro = "\uf083"; |
|
244 |
public const string Key = "\uf084"; |
|
245 |
public const string Gears = "\uf085"; |
|
246 |
public const string Comments = "\uf086"; |
|
247 |
public const string StarHalf = "\uf089"; |
|
248 |
public const string Thumbtack = "\uf08d"; |
|
249 |
public const string Trophy = "\uf091"; |
|
250 |
public const string Upload = "\uf093"; |
|
251 |
public const string Lemon = "\uf094"; |
|
252 |
public const string Phone = "\uf095"; |
|
253 |
public const string SquarePhone = "\uf098"; |
|
254 |
public const string Unlock = "\uf09c"; |
|
255 |
public const string CreditCard = "\uf09d"; |
|
256 |
public const string Rss = "\uf09e"; |
|
257 |
public const string HardDrive = "\uf0a0"; |
|
258 |
public const string Bullhorn = "\uf0a1"; |
|
259 |
public const string Certificate = "\uf0a3"; |
|
260 |
public const string HandPointRight = "\uf0a4"; |
|
261 |
public const string HandPointLeft = "\uf0a5"; |
|
262 |
public const string HandPointUp = "\u261d"; |
|
263 |
public const string HandPointDown = "\uf0a7"; |
|
264 |
public const string CircleArrowLeft = "\uf0a8"; |
|
265 |
public const string CircleArrowRight = "\uf0a9"; |
|
266 |
public const string CircleArrowUp = "\uf0aa"; |
|
267 |
public const string CircleArrowDown = "\uf0ab"; |
|
268 |
public const string Globe = "\uf0ac"; |
|
269 |
public const string Wrench = "\uf0ad"; |
|
270 |
public const string ListCheck = "\uf0ae"; |
|
271 |
public const string Filter = "\uf0b0"; |
|
272 |
public const string Briefcase = "\uf0b1"; |
|
273 |
public const string UpDownLeftRight = "\uf0b2"; |
|
274 |
public const string Users = "\uf0c0"; |
|
275 |
public const string Link = "\uf0c1"; |
|
276 |
public const string Cloud = "\u2601"; |
|
277 |
public const string Flask = "\uf0c3"; |
|
278 |
public const string Scissors = "\u2700"; |
|
279 |
public const string Copy = "\uf0c5"; |
|
280 |
public const string Paperclip = "\uf0c6"; |
|
281 |
public const string FloppyDisk = "\uf0c7"; |
|
282 |
public const string Square = "\u25a0"; |
|
283 |
public const string Bars = "\uf0c9"; |
|
284 |
public const string ListUl = "\uf0ca"; |
|
285 |
public const string ListOl = "\uf0cb"; |
|
286 |
public const string Strikethrough = "\uf0cc"; |
|
287 |
public const string Underline = "\uf0cd"; |
|
288 |
public const string Table = "\uf0ce"; |
|
289 |
public const string WandMagic = "\uf0d0"; |
|
290 |
public const string Truck = "\u26df"; |
|
291 |
public const string MoneyBill = "\uf0d6"; |
|
292 |
public const string CaretDown = "\uf0d7"; |
|
293 |
public const string CaretUp = "\uf0d8"; |
|
294 |
public const string CaretLeft = "\uf0d9"; |
|
295 |
public const string CaretRight = "\uf0da"; |
|
296 |
public const string TableColumns = "\uf0db"; |
|
297 |
public const string Sort = "\uf0dc"; |
|
298 |
public const string SortDown = "\uf0dd"; |
|
299 |
public const string SortUp = "\uf0de"; |
|
300 |
public const string Envelope = "\u2709"; |
|
301 |
public const string ArrowRotateLeft = "\u21ba"; |
|
302 |
public const string Gavel = "\uf0e3"; |
|
303 |
public const string Bolt = "\u26a1"; |
|
304 |
public const string Sitemap = "\uf0e8"; |
|
305 |
public const string Umbrella = "\uf0e9"; |
|
306 |
public const string Paste = "\uf0ea"; |
|
307 |
public const string Lightbulb = "\uf0eb"; |
|
308 |
public const string CloudArrowDown = "\uf0ed"; |
|
309 |
public const string CloudArrowUp = "\uf0ee"; |
|
310 |
public const string UserDoctor = "\uf0f0"; |
|
311 |
public const string Stethoscope = "\uf0f1"; |
|
312 |
public const string Suitcase = "\uf0f2"; |
|
313 |
public const string Bell = "\uf0a2"; |
|
314 |
public const string MugSaucer = "\uf0f4"; |
|
315 |
public const string Hospital = "\uf0f8"; |
|
316 |
public const string TruckMedical = "\uf0f9"; |
|
317 |
public const string SuitcaseMedical = "\uf0fa"; |
|
318 |
public const string JetFighter = "\uf0fb"; |
|
319 |
public const string BeerMugEmpty = "\uf0fc"; |
|
320 |
public const string SquareH = "\uf0fd"; |
|
321 |
public const string SquarePlus = "\uf0fe"; |
|
322 |
public const string AnglesLeft = "\u00ab"; |
|
323 |
public const string AnglesRight = "\u00bb"; |
|
324 |
public const string AnglesUp = "\uf102"; |
|
325 |
public const string AnglesDown = "\uf103"; |
|
326 |
public const string AngleLeft = "\u2039"; |
|
327 |
public const string AngleRight = "\u203a"; |
|
328 |
public const string AngleUp = "\u2303"; |
|
329 |
public const string AngleDown = "\u2304"; |
|
330 |
public const string Laptop = "\uf109"; |
|
331 |
public const string TabletButton = "\uf10a"; |
|
332 |
public const string MobileButton = "\uf10b"; |
|
333 |
public const string QuoteLeft = "\u201c"; |
|
334 |
public const string QuoteRight = "\u201d"; |
|
335 |
public const string Spinner = "\uf110"; |
|
336 |
public const string Circle = "\u25cf"; |
|
337 |
public const string FaceSmile = "\uf118"; |
|
338 |
public const string FaceFrown = "\u2639"; |
|
339 |
public const string FaceMeh = "\uf11a"; |
|
340 |
public const string Gamepad = "\uf11b"; |
|
341 |
public const string Keyboard = "\u2328"; |
|
342 |
public const string FlagCheckered = "\uf11e"; |
|
343 |
public const string Terminal = "\uf120"; |
|
344 |
public const string Code = "\uf121"; |
|
345 |
public const string ReplyAll = "\uf122"; |
|
346 |
public const string LocationArrow = "\uf124"; |
|
347 |
public const string Crop = "\uf125"; |
|
348 |
public const string CodeBranch = "\uf126"; |
|
349 |
public const string LinkSlash = "\uf127"; |
|
350 |
public const string Info = "\uf129"; |
|
351 |
public const string Superscript = "\uf12b"; |
|
352 |
public const string Subscript = "\uf12c"; |
|
353 |
public const string Eraser = "\uf12d"; |
|
354 |
public const string PuzzlePiece = "\uf12e"; |
|
355 |
public const string Microphone = "\uf130"; |
|
356 |
public const string MicrophoneSlash = "\uf131"; |
|
357 |
public const string Calendar = "\uf133"; |
|
358 |
public const string FireExtinguisher = "\uf134"; |
|
359 |
public const string Rocket = "\uf135"; |
|
360 |
public const string CircleChevronLeft = "\uf137"; |
|
361 |
public const string CircleChevronRight = "\uf138"; |
|
362 |
public const string CircleChevronUp = "\uf139"; |
|
363 |
public const string CircleChevronDown = "\uf13a"; |
|
364 |
public const string Anchor = "\u2693"; |
|
365 |
public const string UnlockKeyhole = "\uf13e"; |
|
366 |
public const string Bullseye = "\uf140"; |
|
367 |
public const string Ellipsis = "\uf141"; |
|
368 |
public const string EllipsisVertical = "\uf142"; |
|
369 |
public const string SquareRss = "\uf143"; |
|
370 |
public const string CirclePlay = "\uf01d"; |
|
371 |
public const string SquareMinus = "\uf146"; |
|
372 |
public const string SquareCheck = "\u2611"; |
|
373 |
public const string SquarePen = "\uf14b"; |
|
374 |
public const string ShareFromSquare = "\uf045"; |
|
375 |
public const string Compass = "\uf14e"; |
|
376 |
public const string SquareCaretDown = "\uf150"; |
|
377 |
public const string SquareCaretUp = "\uf151"; |
|
378 |
public const string SquareCaretRight = "\uf152"; |
|
379 |
public const string EuroSign = "\u20ac"; |
|
380 |
public const string SterlingSign = "\u00a3"; |
|
381 |
public const string RupeeSign = "\u20a8"; |
|
382 |
public const string YenSign = "\u00a5"; |
|
383 |
public const string RubleSign = "\u20bd"; |
|
384 |
public const string WonSign = "\u20a9"; |
|
385 |
public const string File = "\uf016"; |
|
386 |
public const string FileLines = "\uf0f6"; |
|
387 |
public const string ArrowDownAZ = "\uf15d"; |
|
388 |
public const string ArrowUpAZ = "\uf15e"; |
|
389 |
public const string ArrowDownWideShort = "\uf160"; |
|
390 |
public const string ArrowUpWideShort = "\uf161"; |
|
391 |
public const string ArrowDown19 = "\uf162"; |
|
392 |
public const string ArrowUp19 = "\uf163"; |
|
393 |
public const string ThumbsUp = "\uf087"; |
|
394 |
public const string ThumbsDown = "\uf088"; |
|
395 |
public const string PersonDress = "\uf182"; |
|
396 |
public const string Person = "\uf183"; |
Formats disponibles : Unified diff