using System;
namespace DTS.Common.Core.ServiceManager
{
///
/// Event fired when a service interface is published\unpublished
///
public class ServicePublishedEvent : IServicePublishedEvent
{
///
/// Returns type of service being published\unpublished
///
public Type ServiceType
{
get;
internal set;
}
///
/// Returns true if Service is being published, false if being unpublished
///
public bool IsPublished
{
get;
internal set;
}
}
}