more build errors in Core

This commit is contained in:
Nikolaj Geisle
2022-02-27 21:20:50 +01:00
parent e7b31a22be
commit d1cf640f2a
71 changed files with 281 additions and 226 deletions

View File

@@ -8,19 +8,19 @@ namespace Umbraco.Cms.Core.Models.Email
/// </summary>
public class NotificationEmailModel
{
public NotificationEmailAddress From { get; }
public NotificationEmailAddress? From { get; }
public IEnumerable<NotificationEmailAddress> To { get; }
public IEnumerable<NotificationEmailAddress?>? To { get; }
public IEnumerable<NotificationEmailAddress> Cc { get; }
public IEnumerable<NotificationEmailAddress>? Cc { get; }
public IEnumerable<NotificationEmailAddress> Bcc { get; }
public IEnumerable<NotificationEmailAddress>? Bcc { get; }
public IEnumerable<NotificationEmailAddress> ReplyTo { get; }
public IEnumerable<NotificationEmailAddress>? ReplyTo { get; }
public string Subject { get; }
public string? Subject { get; }
public string Body { get; }
public string? Body { get; }
public bool IsBodyHtml { get; }