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>
|
|
{
|
|
}
|
|
}
|