mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2024-12-23 03:02:24 +00:00
12 lines
196 B
C#
12 lines
196 B
C#
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace HAILogger
|
|||
|
{
|
|||
|
[DataContract]
|
|||
|
public class SubscribeContract
|
|||
|
{
|
|||
|
[DataMember]
|
|||
|
public string callback { get; set; }
|
|||
|
}
|
|||
|
}
|