Ooui-tws-port/Samples/ISample.cs

14 lines
210 B
C#
Raw Normal View History

2017-11-10 06:35:47 +00:00
using System;
using Ooui;
namespace Samples
{
public interface ISample
{
string Title { get; }
2018-09-02 04:56:35 +00:00
string Path { get; }
2017-11-10 06:35:47 +00:00
Element CreateElement ();
2018-09-02 04:56:35 +00:00
void Publish();
2017-11-10 06:35:47 +00:00
}
}