2022-05-13 00:59:03 -07:00
|
|
|
|
using JetBrains.Annotations;
|
2021-11-22 19:08:27 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Administration.Logs.Converters;
|
|
|
|
|
|
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
|
|
|
|
[BaseTypeRequired(typeof(AdminLogConverter<>))]
|
2022-12-19 03:09:50 +01:00
|
|
|
|
[MeansImplicitUse]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class AdminLogConverterAttribute : Attribute
|
2021-11-22 19:08:27 +01:00
|
|
|
|
{
|
|
|
|
|
|
}
|