16 lines
419 B
C#
16 lines
419 B
C#
namespace AsterNET.Manager.Action
|
|
{
|
|
/// <summary>
|
|
/// The LogoffAction causes the server to close the connection.
|
|
/// </summary>
|
|
public class LogoffAction : ManagerAction
|
|
{
|
|
/// <summary>
|
|
/// Get the name of this action, i.e. "Logoff".
|
|
/// </summary>
|
|
public override string Action
|
|
{
|
|
get { return "Logoff"; }
|
|
}
|
|
}
|
|
} |