11 lines
239 B
C#
11 lines
239 B
C#
using System.Collections.Specialized;
|
|
|
|
namespace Wino.Domain.Interfaces
|
|
{
|
|
public interface ILaunchProtocolService
|
|
{
|
|
object LaunchParameter { get; set; }
|
|
NameValueCollection MailtoParameters { get; set; }
|
|
}
|
|
}
|