agrobot_base/Exemplos/Aspose.GIS-for-.NET-master/Apps/Geo.Demo.Run/IDemoProject.cs

16 lines
281 B
C#

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();
}
}