mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-25 19:54:26 +00:00
17 lines
288 B
C#
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;
|
|
}
|
|
}
|
|
}
|