using System;
namespace WireMock.Models
{
///
/// TimeSettings: Start, End and TTL
///
public interface ITimeSettings
{
///
/// Gets or sets the DateTime from which this mapping should be used. In case this is not defined, it's used (default behavior).
///
DateTime? Start { get; set; }
///
/// Gets or sets the DateTime from until this mapping should be used. In case this is not defined, it's used forever (default behavior).
///
DateTime? End { get; set; }
///
/// Gets or sets the TTL (Time To Live) in seconds for this mapping. In case this is not defined, it's used (default behavior).
///
int? TTL { get; set; }
}
}