yavsc/BookAStar/BookAStar/Interfaces/IMDEditor.cs
2016-09-21 04:02:40 +02:00

13 lines
264 B
C#

using System;
using Xamarin.Forms;
namespace BookAStar.Interfaces
{
public interface IMDEditor
{
View EditorView { get; }
string Text { get; set; }
bool Editable { get; set; }
Action<string> Edited { get; set; }
}
}