예제 #1
0
        internal new static RpcUserMessage Create(DiscordRpcClient discord, ulong channelId, Model model)
        {
            var entity = new RpcUserMessage(discord, model.Id,
                                            RestVirtualMessageChannel.Create(discord, channelId),
                                            RpcUser.Create(discord, model.Author.Value));

            entity.Update(model);
            return(entity);
        }
예제 #2
0
        internal new static RpcUserMessage Create(DiscordRpcClient discord, ulong channelId, Model model)
        {
            var entity = new RpcUserMessage(discord, model.Id,
                                            RestVirtualMessageChannel.Create(discord, channelId),
                                            RpcUser.Create(discord, model.Author.Value, model.WebhookId.ToNullable()),
                                            MessageHelper.GetSource(model));

            entity.Update(model);
            return(entity);
        }