mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-18 08:07:09 +01:00
18 lines
344 B
C#
18 lines
344 B
C#
using System;
|
|
|
|
namespace WireMock.Models;
|
|
|
|
/// <summary>
|
|
/// TimeSettingsModel: Start, End and TTL
|
|
/// </summary>
|
|
public class TimeSettings : ITimeSettings
|
|
{
|
|
/// <inheritdoc />
|
|
public DateTime? Start { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public DateTime? End { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public int? TTL { get; set; }
|
|
} |