2023-04-03 21:06:23 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolAgainStudyContracts.ViewModel
|
|
|
|
|
{
|
|
|
|
|
public class ReportInterestViewModel
|
|
|
|
|
{
|
2023-04-07 20:23:14 +04:00
|
|
|
|
|
2023-04-03 21:06:23 +04:00
|
|
|
|
public string InterestTitle { get; set; } = string.Empty;
|
2023-04-07 20:23:14 +04:00
|
|
|
|
public string ProductTitle { get; set; } = string.Empty;
|
|
|
|
|
public DateTime DateCreateProduct { get; set; }
|
|
|
|
|
public string DiyTitle { get; set; } = string.Empty;
|
|
|
|
|
public DateTime DateCreateDiy{ get; set; }
|
2023-04-03 21:06:23 +04:00
|
|
|
|
}
|
|
|
|
|
}
|