NotesEditor.cs 269 B

123456789101112
  1. namespace InABox.Core
  2. {
  3. public class NotesEditor : BaseEditor
  4. {
  5. public bool AlwaysEnabled { get; set; }
  6. protected override BaseEditor DoClone()
  7. {
  8. return new NotesEditor { AlwaysEnabled = AlwaysEnabled };
  9. }
  10. }
  11. }