Add Windows share target draft attachment flow
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Wino.Core.Domain.Models.Launch;
|
||||
|
||||
public sealed class PendingComposeMailShareRequest
|
||||
{
|
||||
public PendingComposeMailShareRequest(Guid draftUniqueId, MailShareRequest shareRequest)
|
||||
{
|
||||
DraftUniqueId = draftUniqueId;
|
||||
ShareRequest = shareRequest ?? throw new ArgumentNullException(nameof(shareRequest));
|
||||
}
|
||||
|
||||
public Guid DraftUniqueId { get; }
|
||||
public MailShareRequest ShareRequest { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user