namespace Core.Common.Utils { /// /// Web link (url). /// public class Url { /// /// Creates a url. /// /// The name of the url. /// The path of the url. public Url(string name, string path) { Name = name; Path = path; } /// /// Gets or sets the path of the url. /// public string Path { get; set; } /// /// Gets or sets the name of the url. /// public string Name { get; set; } } }