1
0
mirror of synced 2024-11-24 04:20:10 +01:00
TaikoSoundEditor/Commons/Utils/RecastAttribute.cs

15 lines
324 B
C#
Raw Normal View History

2023-10-01 18:40:41 +02:00
using System;
namespace TaikoSoundEditor.Commons.Utils
{
[AttributeUsage(AttributeTargets.Property)]
internal class RecastAttribute : Attribute
{
public string PropertyName { get; set; }
public RecastAttribute(string property)
{
PropertyName = property;
}
}
}