Y3S1-Cloud_Systems_DevOps/ThAmCo-Stock/ThAmCo.Stock/Models/ViewModel/AdjustCostViewModel.cs
2020-06-09 21:21:37 +01:00

11 lines
262 B
C#

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