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:
Morb
2022-12-20 06:44:15 +03:00
committed by GitHub
parent 04896d59bf
commit 6835ab0a04
5 changed files with 40 additions and 6 deletions

View File

@@ -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>();
}
}