GuOrg/Gu.Localization

GULOC02 should not warn here

Closed this issue · 0 comments

namespace RoslynSandbox
{
    using RoslynSandbox.Properties;

    public class AppearanceItem
    {
        private readonly string translationKey;

        public AppearanceItem(string translationKey)
        {
            this.translationKey = translationKey;
        }

        public string DisplayName => Translate.Key(this.translationKey);
    }
}