mirror of
https://github.com/actions/runner.git
synced 2026-01-04 00:49:04 +08:00
14 lines
312 B
C#
14 lines
312 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
/// <summary>
|
|
/// Defines provider data of the variable group.
|
|
/// </summary>
|
|
[KnownType(typeof(AzureKeyVaultVariableGroupProviderData))]
|
|
[DataContract]
|
|
public class VariableGroupProviderData
|
|
{
|
|
}
|
|
}
|