// Copyright (c) 2012-2016 fo-dicom contributors.
// Licensed under the Microsoft Public License (MS-PL).
namespace CSJ2K.Util
{
///
/// Interface for default classification of manager types.
///
public interface IDefaultable
{
///
/// Gets whether or not this type is classified as a default manager.
///
bool IsDefault { get; }
}
}