blob: daef63c48dac2f1575eb9549742615bab8981ca4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.Collections.Generic;
namespace MaterialDesignThemes.Wpf
{
/// ******************************************
/// This code is auto generated. Do not amend.
/// ******************************************
internal static class PackIconDataFactory
{
internal static IDictionary<PackIconKind, string> Create() => new Dictionary<PackIconKind, string>
{
{ PackIconKind.AutoGenerated, "data in here" },
{ PackIconKind.DoNotAmend, "data in here" }
};
}
}
|