15 lines
324 B
C#
15 lines
324 B
C#
using System;
|
|
namespace TaikoSoundEditor.Commons.Utils
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
internal class RecastAttribute : Attribute
|
|
{
|
|
public string PropertyName { get; set; }
|
|
|
|
public RecastAttribute(string property)
|
|
{
|
|
PropertyName = property;
|
|
}
|
|
}
|
|
}
|