PIAPS_CW/Contracts/ViewModels/UserProductViewModel.cs
2024-06-11 12:18:10 +04:00

16 lines
318 B
C#

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; }
}
}