BoardGameGeekApiClient.Models.CollectionItem.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : CollectionItem
return CollectionItem
        public CollectionItem Clone()
        {
            return new CollectionItem
            {
                GameId = this.GameId,
                Name = this.Name,
                Description = this.Description,
                Image = this.Image,
                Thumbnail = this.Thumbnail,
                MinPlayers = this.MinPlayers,
                MaxPlayers = this.MaxPlayers,
                PlayingTime = this.PlayingTime,
                Mechanics = this.Mechanics,
                Categories = this.Categories,
                IsExpansion = this.IsExpansion,
                YearPublished = this.YearPublished,
                BGGRating = this.BGGRating,
                AverageRating = this.AverageRating,
                Rank = this.Rank,
                Designers = this.Designers,
                Publishers = this.Publishers,
                Artists = this.Artists,
                NumPlays = this.NumPlays,
                Rating = this.Rating,
                Owned = this.Owned,
                PreviousOwned = this.PreviousOwned,
                PreOrdered = this.PreOrdered,
                ForTrade = this.ForTrade,
                Want = this.Want,
                WantToPlay = this.WantToPlay,
                WantToBuy = this.WantToBuy,
                WishList = this.WishList,
                UserComment = this.UserComment,
                Expansions = this.Expansions
            };
        }
CollectionItem