// Copyright © WireMock.Net
namespace WireMock.Models;
///
/// StringPattern which defines the Pattern as a string, and optionally the filepath pattern file.
///
public struct StringPattern
{
///
/// The pattern as string.
///
public string Pattern { get; set; }
///
/// The filepath (optionally)
///
public string? PatternAsFile { get; set; }
}