12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMISOnline.ViewModel.Coursework
- {
- public class CourseworkReviewView
- {
- public decimal ResultID { get; set; }
- public string user_id { get; set; }
- public string username { get; set; }
- public DateTime? test_end_date { get; set; }
- public double? score { get; set; }
- public int? state { get; set; }
- public string WorkName { get; set; }
- public string PaperName { get; set; }
- }
- }
|