using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RDH.PharmacyPlatform.Sync.Core { /// /// 表示注册消息的类 /// [Serializable] public class RegisterData : MessageData { public RegisterData() : base() { } public RegisterData(String sourceId, String content, MessageFilterType filter, String target) :base(sourceId, content, filter, target) { } } }