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

16 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class EmployeeProductViewModel
{
public Guid Guid { get; set; }
public string Name { get; set; } = string.Empty;
public double Price { get; set; }
}
}