using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Contracts.ViewModels
{
	public class UserProductViewModel
	{
		public string Name { get; set; } = string.Empty;
		public double Price { get; set; }
		public double Rate { get; set; }
	}
}