using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Geo.Demo.Run { internal interface IDemoProject { string Description { get; } string Title { get; } void Run(); } }