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/IConfigObject.cs

8 lines
198 B
C#

namespace TweetLib.Core.Systems.Configuration {
public interface IConfigObject {}
public interface IConfigObject<T> : IConfigObject where T : IConfigObject<T> {
T ConstructWithDefaults();
}
}