using Knoks.Core.Entities.Interfaces; using System; namespace Knoks.Core.Entities { public class SystemConfiguration : IApiResult { public bool IsTestMode { get; set; } public DateTime SystemDateTime { get; set; } } }