Ooui-tws-port/Samples/ISample.cs

14 lines
210 B
C#

using System;
using Ooui;
namespace Samples
{
public interface ISample
{
string Title { get; }
string Path { get; }
Element CreateElement ();
void Publish();
}
}