protected ProfileInfoItem(ProfileInfoItemType type = ProfileInfoItemType.RichText) { this.Type = type; }
public CustomItem(string title, string description, Action navigationAction = null, ProfileInfoItemType type = ProfileInfoItemType.RichText) : base(type) { this.Title = title; this.Data = (object)description; if (navigationAction == null) { return; } this.NavigationAction = navigationAction; }