ZicoresTradingPostNotifier.Model.NotificationModel.ApplyItemValues C# (CSharp) Method

ApplyItemValues() public method

public ApplyItemValues ( Scraper.Notifier.HotItem item ) : void
item Scraper.Notifier.HotItem
return void
        public void ApplyItemValues(HotItem item)
        {
            if (item != null)
            {
                Name = item.Name;
                Quantitiy = item.Quantity;
                Image = item.Image;
            }
        }