PIAPS_CW/Contracts/ViewModels/UserProductViewModel.cs

17 lines
382 B
C#
Raw Permalink Normal View History

2024-06-11 12:18:10 +04:00
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 string Description { get; set; } = string.Empty;
public double Rate { get; set; }
2024-06-11 12:18:10 +04:00
}
}