// Copyright © WireMock.Net
namespace WireMock.Models
{
///
/// TimeSettingsModel: Start, End and TTL
///
[FluentBuilder.AutoGenerateBuilder]
public class TimeSettingsModel
{
///
/// Gets or sets the DateTime from which this mapping should be used. In case this is not defined, it's used (default behavior).
///
public 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).
///
public 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).
///
public int? TTL { get; set; }
}
}