mirror of
https://github.com/actions/runner.git
synced 2025-12-12 05:37:01 +00:00
11 lines
212 B
C#
11 lines
212 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.Runner.Listener
|
|
{
|
|
[DataContract]
|
|
public sealed class MessageRef
|
|
{
|
|
[DataMember(Name = "id")]
|
|
public string Id { get; set; }
|
|
}
|
|
} |