Class EmailClients
- Namespace
- Mailtrap.TestingMessages.Models
- Assembly
- Mailtrap.Abstractions.dll
Represents details of email clients affected by HTML analysis error.
public sealed record EmailClients : IEquatable<EmailClients>
- Inheritance
-
EmailClients
- Implements
Properties
Desktop
Gets the list of desktop clients affected.
[JsonPropertyName("desktop")]
[JsonPropertyOrder(1)]
[JsonObjectCreationHandling(JsonObjectCreationHandling.Populate)]
public IList<string> Desktop { get; }
Property Value
Mobile
Gets the list of mobile clients affected.
[JsonPropertyName("mobile")]
[JsonPropertyOrder(2)]
[JsonObjectCreationHandling(JsonObjectCreationHandling.Populate)]
public IList<string> Mobile { get; }
Property Value
Web
Gets the list of web clients affected.
[JsonPropertyName("web")]
[JsonPropertyOrder(3)]
[JsonObjectCreationHandling(JsonObjectCreationHandling.Populate)]
public IList<string> Web { get; }