Files
duplicati/Duplicati/Library/Interface/ICommonModule.cs
T

18 lines
406 B
C#
Raw Normal View History

namespace Duplicati.Library.Interface;
public interface ICommonModule : IDynamicModule
{
/// <summary>
/// Gets the module key
/// </summary>
string Key { get; }
/// <summary>
/// Gets the display name of the module
/// </summary>
string DisplayName { get; }
/// <summary>
/// Gets the description of the module
/// </summary>
string Description { get; }
}