15 lines
354 B
C#
15 lines
354 B
C#
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; }
|
|
}
|
|
}
|