mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
16 lines
375 B
C#
16 lines
375 B
C#
using TweetLib.Api.Data;
|
|
|
|
namespace TweetLib.Api {
|
|
public abstract class TweetDuckExtension {
|
|
/// <summary>
|
|
/// Unique identifier of the extension.
|
|
/// </summary>
|
|
public abstract Resource Id { get; }
|
|
|
|
/// <summary>
|
|
/// Called when the extension is loaded on startup, or enabled at runtime.
|
|
/// </summary>
|
|
public abstract void Enable(ITweetDuckApi api);
|
|
}
|
|
}
|