Files
NebulaLauncher/Nebula.Shared/Attributes/GeneratePropertyAttribute.cs

12 lines
272 B
C#
Raw Permalink Normal View History

2025-01-15 19:47:27 +03:00
namespace Nebula.Shared.Attributes
{
[AttributeUsage(AttributeTargets.Property)]
public class GeneratePropertyAttribute : Attribute
{
}
2025-01-22 21:06:05 +03:00
[AttributeUsage(AttributeTargets.Property)]
public class DesignConstructAttribute : Attribute
{
}
2025-01-15 19:47:27 +03:00
}