28 lines
724 B
C#
28 lines
724 B
C#
using Deckungsbeitrag.Properties;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Deckungsbeitrag
|
|
{
|
|
public static class Config
|
|
{
|
|
public static class FarbenConfig
|
|
{
|
|
public static readonly IReadOnlyDictionary<string, Color> Farben = new Dictionary<string, Color>
|
|
{
|
|
["Beladeband"] = Settings.Default.Beladeband,
|
|
["Waschstrasse"] = Settings.Default.Waschstrasse,
|
|
["Presse"] = Settings.Default.Presse,
|
|
["Trockner"] = Settings.Default.Trockner,
|
|
["Entladeband"] = Settings.Default.Entladeband,
|
|
["Hubband"] = Settings.Default.Hubband
|
|
};
|
|
}
|
|
|
|
}
|
|
}
|