* Refactor draft creation * try scoped namespace * Refactor mailto protocol and revert namespaces * Remove useless account query * Fix typo and CC/BCC in replies * Replace convert with existing extension * Small fixes * Fix CC/Bcc in replies to automatically show if needed. * Fixed body parameter position from mailto parameters * Fixed issue with ReplyAll self not removed
11 lines
265 B
C#
11 lines
265 B
C#
using Wino.Core.Domain.Interfaces;
|
|
using Wino.Core.Domain.Models.Launch;
|
|
|
|
namespace Wino.Core.Services;
|
|
|
|
public class LaunchProtocolService : ILaunchProtocolService
|
|
{
|
|
public object LaunchParameter { get; set; }
|
|
public MailToUri MailToUri { get; set; }
|
|
}
|