mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2024-12-22 18:52: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; }
|
|
}
|
|
}
|