using System.Collections.Generic; namespace WireMock.Admin.Mappings { /// /// Cookie Model /// public class CookieModel { /// /// Gets or sets the name. /// public string Name { get; set; } /// /// Gets or sets the matchers. /// public IList Matchers { get; set; } } }