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

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;
}
}
}