20 lines
624 B
C#
20 lines
624 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 int Id { get; set; }
|
|||
|
public string InterestTitle { get; set; } = string.Empty;
|
|||
|
public string InterestDesc { get; set; } = string.Empty;
|
|||
|
public string WorkType { get; set; } = string.Empty;
|
|||
|
public string WorkTitle { get; set; } = string.Empty;
|
|||
|
public string WorkDesc { get; set; } = string.Empty;
|
|||
|
public DateTime DateCreate { get; set; }
|
|||
|
}
|
|||
|
}
|