windowcapture
исходный код / Models/UndoAction.cs

UndoAction.cs

14 строк · 306 байт · модуль Models
 1namespace WindowCapture.Models
 2{
 3    public class UndoAction
 4    {
 5        public string Type; // "highlight", "arrow", "marker", "text", "bubble"
 6        public object Item;
 7
 8        public UndoAction(string type, object item)
 9        {
10            Type = type;
11            Item = item;
12        }
13    }
14}