1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-01-15 14:42:46 +01: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();
}
}