using System.ComponentModel.DataAnnotations; namespace Application { public class PublishLinkCommand { [Required] [Url] public string Url { get; set; } } }