1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Core/Systems/Configuration/ConfigObjects.cs

17 lines
490 B
C#

using TweetLib.Core.Application;
using TweetLib.Core.Features.Plugins.Config;
namespace TweetLib.Core.Systems.Configuration {
public sealed class ConfigObjects<TUser, TSystem> where TUser : IAppUserConfiguration where TSystem : IConfigObject {
public TUser User { get; }
public TSystem System { get; }
public PluginConfig Plugins { get; }
public ConfigObjects(TUser user, TSystem system, PluginConfig plugins) {
User = user;
System = system;
Plugins = plugins;
}
}
}