13 lines
315 B
C#
13 lines
315 B
C#
namespace Discord.API;
|
|
|
|
public class LifeTime
|
|
{
|
|
public virtual bool IsValid => true;
|
|
public virtual bool IsInfinite => true;
|
|
|
|
protected LifeTime()
|
|
{}
|
|
|
|
internal static LifeTime Infinite { get; } = new LifeTime();
|
|
internal static SingleEventLifeTime SingleEvent => new SingleEventLifeTime();
|
|
} |