using Knoks.Framework.DataAccess; using Knoks.Framework.Extentions; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Knoks.Core.Entities.Args { public class ReferenceUrlArgs: IApiArgs { [JsonIgnore, AutoInitField] public string HttpRequestInfo { get; set; } public string Url { get; set; } } }