aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Editors/IUndoRedoState.cs
blob: c4d455624f8bba33f26d60e460183ca7d93907a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Editors
{
    /// <summary>
    /// Represents an undo/redo state.
    /// </summary>
    public interface IUndoRedoState
    {
        /// <summary>
        /// Gets or sets the undo/redo creation date time.
        /// </summary>
        DateTime Date { get; set; }
    }
}