mirror of
https://github.com/actions/runner.git
synced 2025-12-19 00:36:55 +00:00
13 lines
249 B
C#
13 lines
249 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace GitHub.DistributedTask.Expressions
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public interface IString
|
|
{
|
|
String GetString();
|
|
}
|
|
}
|