10 lines
154 B
C#
10 lines
154 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Ocsp
|
|
{
|
|
public abstract class CertificateStatus
|
|
{
|
|
public static readonly CertificateStatus Good = null;
|
|
}
|
|
}
|