mirror of
https://github.com/Stone-Red-Code/CuteUtils.git
synced 2026-09-05 23:38:52 +02:00
7 lines
209 B
C#
7 lines
209 B
C#
namespace CuteUtils.Reflection;
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
|
|
public class DynDtoNameAttribute(string name) : Attribute
|
|
{
|
|
public string Name { get; set; } = name;
|
|
}
|