21 lines
514 B
C#

using DressAtelierDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
namespace DressAtelierContracts.ViewModels
{
public class MaterialViewModel : IMaterialModel
{
[DisplayName("Name of component")]
public string ComponentName { get; set; } = string.Empty;
[DisplayName("Cost")]
public double Cost { get; set; }
public int ID { get; set; }
}
}