Aragas/Bannerlord.MBOptionScreen

View on GitHub
src/MCM.Abstractions/Definitions/IPropertyDefinitionWithCustomFormatter.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace MCM.Abstractions
{
#if !BANNERLORDMCM_PUBLIC
    internal
#else
    public
# endif
    interface IPropertyDefinitionWithCustomFormatter
    {
        Type? CustomFormatter { get; }
    }
}