mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
17 lines
235 B
C#
17 lines
235 B
C#
using System;
|
|
|
|
namespace ZuneUI
|
|
{
|
|
public class DescriptionAttribute : Attribute
|
|
{
|
|
private uint m_stringId;
|
|
|
|
public uint StringId => m_stringId;
|
|
|
|
public DescriptionAttribute(uint stringId)
|
|
{
|
|
m_stringId = stringId;
|
|
}
|
|
}
|
|
}
|