2024-07-20 03:07:21 +02:00
|
|
|
|
using System.Collections.Specialized;
|
2024-07-21 05:45:02 +02:00
|
|
|
|
using Wino.Domain.Interfaces;
|
2024-07-20 03:07:21 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Wino.Services
|
|
|
|
|
|
{
|
|
|
|
|
|
public class LaunchProtocolService : ILaunchProtocolService
|
|
|
|
|
|
{
|
|
|
|
|
|
public object LaunchParameter { get; set; }
|
|
|
|
|
|
public NameValueCollection MailtoParameters { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|