mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-22 00:19:18 +01:00
29 lines
972 B
C#
29 lines
972 B
C#
namespace Dalamud.Utility;
|
|
|
|
/// <summary>
|
|
/// Utility class for marking something to be changed for API 10, for ease of lookup.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.All, Inherited = false)]
|
|
internal sealed class Api10ToDoAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Marks that this exists purely for making API 9 plugins work.
|
|
/// </summary>
|
|
public const string DeleteCompatBehavior = "Delete. This is for making API 9 plugins work.";
|
|
|
|
/// <summary>
|
|
/// Marks that this should be moved to an another namespace.
|
|
/// </summary>
|
|
public const string MoveNamespace = "Move to another namespace.";
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Api10ToDoAttribute"/> class.
|
|
/// </summary>
|
|
/// <param name="what">The explanation.</param>
|
|
/// <param name="what2">The explanation 2.</param>
|
|
public Api10ToDoAttribute(string what, string what2 = "")
|
|
{
|
|
_ = what;
|
|
_ = what2;
|
|
}
|
|
}
|