예제 #1
0
        public Sticker(AddStickerCommand command)
        {
            Id       = command.Id;
            Text     = command.Text;
            Position = new Position(command.PositionX, command.PositionY);
            Color    = new Color(command.Color);

            RemovedMoment = null;
        }
예제 #2
0
 public async Task Create(AddStickerCommand command)
 {
     await SendAsync(command);
 }