mirror of
https://github.com/actions/runner.git
synced 2025-12-12 05:37:01 +00:00
12 lines
267 B
C#
12 lines
267 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace GitHub.DistributedTask.Expressions
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public interface IReadOnlyObject : IReadOnlyDictionary<String, Object>
|
|
{
|
|
}
|
|
}
|