14 lines
377 B
C#
14 lines
377 B
C#
using System;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Streetwriters.Common.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Interface, AllowMultiple = false)]
|
|
public class JsonInterfaceConverterAttribute : JsonConverterAttribute
|
|
{
|
|
public JsonInterfaceConverterAttribute(Type converterType)
|
|
: base(converterType)
|
|
{
|
|
}
|
|
}
|
|
} |