18 lines
488 B
C#
18 lines
488 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ComputerShopContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportPurchaseSupplyViewModel
|
|||
|
{
|
|||
|
public int UserId { get; set; }
|
|||
|
public int ComponentId { get; set; }
|
|||
|
public string ComponentName { get; } = String.Empty;
|
|||
|
public DateTime PurchaseDateCreating { get; set; }
|
|||
|
public DateTime SupplyDateCreating { get; set; }
|
|||
|
}
|
|||
|
}
|