14 lines
445 B
C#
14 lines
445 B
C#
using System.ComponentModel;
|
|
|
|
namespace MCVIngenieros.Healthchecks.__;
|
|
|
|
// Options for health check container
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public sealed class HealthCheckContainerOptions
|
|
{
|
|
public TimeSpan CacheDuration { get; set; } = TimeSpan.FromMinutes(10);
|
|
public TimeSpan Timeout { get; set; } = TimeSpan.FromSeconds(3);
|
|
public IEnumerable<System.Reflection.Assembly> AssembliesToScan { get; set; } = [];
|
|
}
|
|
|