mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 14:42:46 +01:00
17 lines
490 B
C#
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;
|
|
}
|
|
}
|
|
}
|