using System; using System.Collections.Generic; using System.Text; namespace Tiger.Model.SeaStone.Shelf { /// /// 智能料车上报WebHook /// public class WebHook { public WebHook() { } public WebHook(string Url, string UserId, string SessionId) { this.Url = Url; this.UserId = UserId; this.SessionId = SessionId; } /// /// WebHook类别,固定值"SlotChanged" /// public string Key { get; } = "SlotChanged"; /// /// 上报接收接口地址 /// public string Url { get; set; } /// /// 操作人 /// public string UserId { get; set; } /// /// 会话ID /// public string SessionId { get; set; } } }