using System.Collections.Generic; using Umbraco.Cms.Core.Models; using Umbraco.Cms.Core.Strings; namespace Umbraco.Cms.Core { public static class ConventionsHelper { public static Dictionary GetStandardPropertyTypeStubs(IShortStringHelper shortStringHelper) => new Dictionary { { Constants.Conventions.Member.Comments, new PropertyType( shortStringHelper, Constants.PropertyEditors.Aliases.TextArea, ValueStorageType.Ntext, true, Constants.Conventions.Member.Comments) { Name = Constants.Conventions.Member.CommentsLabel, } }, }; } }