19 lines
532 B
C#
19 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolAgainStudyContracts.ViewModel
|
|
{
|
|
public class ReportInterestViewModel
|
|
{
|
|
|
|
public string InterestTitle { get; set; } = string.Empty;
|
|
public string ProductTitle { get; set; } = string.Empty;
|
|
public DateTime DateCreateProduct { get; set; }
|
|
public string DiyTitle { get; set; } = string.Empty;
|
|
public DateTime DateCreateDiy{ get; set; }
|
|
}
|
|
}
|