Fax Machine (#11704)
This commit is contained in:
28
Content.Server/Fax/FaxConstants.cs
Normal file
28
Content.Server/Fax/FaxConstants.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
namespace Content.Server.Fax;
|
||||
|
||||
public static class FaxConstants
|
||||
{
|
||||
// Commands
|
||||
|
||||
/**
|
||||
* Used to get other faxes connected to current network
|
||||
*/
|
||||
public const string FaxPingCommand = "fax_ping";
|
||||
|
||||
/**
|
||||
* Used as response to ping command
|
||||
*/
|
||||
public const string FaxPongCommand = "fax_pong";
|
||||
|
||||
/**
|
||||
* Used when fax sending data to destination fax
|
||||
*/
|
||||
public const string FaxPrintCommand = "fax_print";
|
||||
|
||||
// Data
|
||||
|
||||
public const string FaxNameData = "fax_data_name";
|
||||
public const string FaxPaperNameData = "fax_data_title";
|
||||
public const string FaxPaperContentData = "fax_data_content";
|
||||
public const string FaxSyndicateData = "fax_data_i_am_syndicate";
|
||||
}
|
||||
Reference in New Issue
Block a user