10 lines
243 B
C#
10 lines
243 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace Content.Server.Administration.Logs.Converters;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
[BaseTypeRequired(typeof(AdminLogConverter<>))]
|
|
public sealed class AdminLogConverterAttribute : Attribute
|
|
{
|
|
}
|