mirror of https://github.com/hykilpikonna/AquaDX
10 lines
330 B
C#
10 lines
330 B
C#
using System;
|
|
|
|
namespace AquaMai.Config.Attributes;
|
|
|
|
// When The most inner namespace is the same name of the class, it should be collapsed.
|
|
// The class must be the only class in the namespace with a [ConfigSection] attribute.
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class ConfigCollapseNamespaceAttribute : Attribute
|
|
{}
|