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