16 lines
352 B
C#
16 lines
352 B
C#
using FurnitureAssemblyDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FurnitureAssemblyContracts.ViewModels
|
|
{
|
|
public class FurnitureCountViewModel
|
|
{
|
|
public string furniture { get; set; }
|
|
public int Count { get; set; }
|
|
}
|
|
}
|