using MongoDB.Bson.Serialization.Attributes; using ProtoBuf; // 不要在这个文件加[ProtoInclude]跟[BsonKnowType]标签,加到InnerMessage.cs或者OuterMessage.cs里面去 namespace Hotfix { public interface IActorMessage: IMessage { } [ProtoContract] public interface IActorRequest : IRequest { } [ProtoContract] public interface IActorResponse : IResponse { } [ProtoContract] public interface IFrameMessage : IActorMessage { long Id { get; set; } } }