using Exceptron.Driver.Message; namespace Exceptron.Driver { public class ClientConfiguration { public ClientConfiguration() { ServerUrl = "http://api.exceptron.com/v1a/"; } /// /// If ExceptronClinet should throw exceptions in case of an error. Default: /// /// /// Its recommended that this flag is set to True during development and in production systems. /// If an exception is thrown while this flag is set to the thrown exception will be returned in /// public bool ThrowsExceptions { get; set; } internal string ServerUrl { get; set; } } }