13 lines
264 B
C#
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; }
|
|
}
|
|
}
|