mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
10 lines
281 B
C#
10 lines
281 B
C#
namespace Dalamud.Plugin.Services;
|
|
|
|
/// <summary>
|
|
/// Marker interface for Dalamud services.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This interface is implemented by all services provided through Dalamud's
|
|
/// dependency injection system.
|
|
/// </remarks>
|
|
public interface IDalamudService;
|