18 lines
468 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DressAtelierContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int ID { get; set; }
public DateTime CreationDate { get; set; }
public string DressName { get; set; } = string.Empty;
public double Total { get; set; }
public string Status { get; set; } = string.Empty;
}
}