This commit is contained in:
eric sciple
2022-05-23 17:19:21 +00:00
committed by GitHub
parent a6ece8b1bf
commit 1e1d225896
4 changed files with 26 additions and 72 deletions

View File

@@ -0,0 +1,11 @@
using System.Runtime.Serialization;
namespace GitHub.Runner.Listener
{
[DataContract]
public sealed class MessageRef
{
[DataMember(Name = "id")]
public string Id { get; set; }
}
}