16 lines
406 B
C#
16 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FlowerShopContracts.ViewModels
|
|
{
|
|
public class ReportFlowerComponentViewModel
|
|
{
|
|
public string FlowerName { get; set; } = string.Empty;
|
|
public int TotalCount { get; set; }
|
|
public List<Tuple<string, int>> Components { get; set; } = new();
|
|
}
|
|
}
|