Files
NebulaLauncher/Nebula.Shared/Attributes/GeneratePropertyAttribute.cs
2025-01-22 21:06:05 +03:00

12 lines
272 B
C#

namespace Nebula.Shared.Attributes
{
[AttributeUsage(AttributeTargets.Property)]
public class GeneratePropertyAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Property)]
public class DesignConstructAttribute : Attribute
{
}
}