Files
crystall-punk-14/Content.Server/Fax/FaxConstants.cs

34 lines
1.0 KiB
C#
Raw Permalink Normal View History

namespace Content.Server.Fax;
2022-12-11 21:06:11 +03:00
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 FaxPaperLabelData = "fax_data_label";
public const string FaxPaperPrototypeData = "fax_data_prototype";
2022-12-11 21:06:11 +03:00
public const string FaxPaperContentData = "fax_data_content";
public const string FaxPaperStampStateData = "fax_data_stamp_state";
public const string FaxPaperStampedByData = "fax_data_stamped_by";
2022-12-11 21:06:11 +03:00
public const string FaxSyndicateData = "fax_data_i_am_syndicate";
public const string FaxPaperLockedData = "fax_data_locked";
2022-12-11 21:06:11 +03:00
}