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