mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-07-12 07:59:14 +00:00
First commit
This commit is contained in:
16
DiscordAPI/Converters/EnumValueAttribute.cs
Normal file
16
DiscordAPI/Converters/EnumValueAttribute.cs
Normal file
@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user