Y3S1-Cloud_Systems_DevOps/ThAmCo-Stock/ThAmCo.Stock/Models/ViewModel/AdjustCostViewModel.cs

11 lines
262 B
C#
Raw Normal View History

2020-06-09 20:21:37 +00:00
namespace ThAmCo.Stock.Models.ViewModel
{
public class AdjustCostViewModel
{
public int Id { get; set; }
public double Cost { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
}