using Core.Common.Gui; using Core.Common.Utils; using Core.Common.Utils.Attributes; using Core.Plugins.CommonTools.Gui.Properties; namespace Core.Plugins.CommonTools.Gui.Property { [ResourcesDisplayName(typeof(Resources), "UrlProperties_DisplayName")] public class UrlProperties : ObjectProperties { [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "Common_Name_DisplayName")] [ResourcesDescription(typeof(Resources), "UrlProperties_Name_Description")] public string Name { get { return data.Name; } set { data.Name = value; } } [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "UrlProperties_Path_DisplayName")] [ResourcesDescription(typeof(Resources), "UrlProperties_Path_Description")] public string Path { get { return data.Path; } set { data.Path = value; } } } }