SDR-RPC/DiscordAPI/Converters/EnumValueAttribute.cs
2023-09-05 01:21:19 +03:00

17 lines
288 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DiscordRPC.Converters
{
internal class EnumValueAttribute : Attribute
{
public string Value { get; set; }
public EnumValueAttribute(string value)
{
this.Value = value;
}
}
}