mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2025-05-07 09:23:11 +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; }
|
|
}
|
|
}
|