kCura.WinEDDS.Pair
namespace kCura.WinEDDS
{
public class Pair : IComparable
{
public string Value;
public string Display;
public Pair(string value, string display);
public bool Equals(Pair other);
public int CompareTo(object other);
}
}
namespace kCura.EDDS.WebAPI.AuditManagerBase
{
public class AuditExportCompletedEventArgs : AsyncCompletedEventArgs
{
public bool Result { get; }
}
}