Aragas/Bannerlord.MBOptionScreen

View on GitHub
src/MCM.Abstractions/Definitions/Attributes/v2/SettingPropertyGroupMetadataAttribute.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

// ReSharper disable once CheckNamespace
namespace MCM.Abstractions.Attributes.v2
{
    [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
#if !BANNERLORDMCM_INCLUDE_IN_CODE_COVERAGE
    [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage, global::System.Diagnostics.DebuggerNonUserCode]
#endif
#if !BANNERLORDMCM_PUBLIC
    internal
#else
    public
# endif
    sealed class SettingPropertyGroupMetadataAttribute : BaseSettingPropertyAttribute,
        IPropertyDefinitionGroupMetadata
    {
        public SettingPropertyGroupMetadataAttribute() : base(string.Empty) { }
    }
}