DocSpace-buildtools/thirdparty/openstack.net/samples/ISample.cs

7 lines
189 B
C#
Raw Normal View History

2021-05-18 09:41:26 +00:00
using System.Threading.Tasks;
public interface ISample
{
void PrintTasks();
Task Run(string identityEndpoint, string username, string password, string project, string region);
}