using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Knoks.Core.Entities.Args { public class SystemConfigurationArgs : IApiArgs { public string HttpRequestInfo { get; set; } public bool IsTestMode { get; set; } public DateTime SystemDateTime { get; set; } } }