Fax stamps (#13010)
* Change captain fax suffix * Add stamps transmit * Remove proto dependency * Add centcom fax address for nuke codes * Remove centcom address resolve * Remove centcom id
This commit is contained in:
@@ -134,9 +134,17 @@ public sealed class FaxPrintout
|
||||
[DataField("content")]
|
||||
public string Content { get; }
|
||||
|
||||
public FaxPrintout(string content, string name)
|
||||
[DataField("stampState")]
|
||||
public string? StampState { get; }
|
||||
|
||||
[DataField("stampedBy")]
|
||||
public List<string> StampedBy { get; }
|
||||
|
||||
public FaxPrintout(string content, string name, string? stampState = null, List<string>? stampedBy = null)
|
||||
{
|
||||
Content = content;
|
||||
Name = name;
|
||||
StampState = stampState;
|
||||
StampedBy = stampedBy ?? new List<string>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user