/* Options: Date: 2026-04-04 15:45:06 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://notifications.breastcancertrials.org.au //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: SendSiteOpenQueryEmail.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using BctNotification.ServiceModel.Types; using BctNotification.ServiceModel.Requests.Hangfire; namespace BctNotification.ServiceModel.Requests.Hangfire { public partial class SendSiteOpenQueryEmail : IReturn, IPost { [Validate("NotNull")] public virtual int? TrialId { get; set; } [Validate("NotNull")] public virtual string InstCode { get; set; } [Validate("NotNull")] public virtual DateTime? EffectiveDate { get; set; } } public partial class SendSiteOpenQueryEmailResponse { public SendSiteOpenQueryEmailResponse() { ToAddresses = new List{}; CcAddresses = new List{}; BccAddresses = new List{}; } public virtual ResponseStatus ResponseStatus { get; set; } public virtual string Result { get; set; } public virtual string Subject { get; set; } public virtual List ToAddresses { get; set; } public virtual List CcAddresses { get; set; } public virtual List BccAddresses { get; set; } public virtual EmailAddress FromAddress { get; set; } public virtual int count { get; set; } } } namespace BctNotification.ServiceModel.Types { public partial class EmailAddress { public virtual string DisplayName { get; set; } public virtual string Address { get; set; } } }