Add an option to the admin fax menu to lock papers such that they can't be edited by cybersun pens (#28972)
* Add option to adminfax for locking papers. * Replace dummy control with margin
This commit is contained in:
@@ -56,8 +56,9 @@ public static class AdminFaxEuiMsg
|
||||
public string Content { get; }
|
||||
public string StampState { get; }
|
||||
public Color StampColor { get; }
|
||||
public bool Locked { get; }
|
||||
|
||||
public Send(NetEntity target, string title, string from, string content, string stamp, Color stampColor)
|
||||
public Send(NetEntity target, string title, string from, string content, string stamp, Color stampColor, bool locked)
|
||||
{
|
||||
Target = target;
|
||||
Title = title;
|
||||
@@ -65,6 +66,7 @@ public static class AdminFaxEuiMsg
|
||||
Content = content;
|
||||
StampState = stamp;
|
||||
StampColor = stampColor;
|
||||
Locked = locked;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user