yavsc/ZicMoove/ZicMoove/Interfaces/IMDEditor.cs

14 lines
263 B
C#

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