20 lines
420 B
C#
20 lines
420 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Text;
|
||
|
||
namespace New_College.Model.ViewModels.Result
|
||
{
|
||
public class EvaluationResponse
|
||
{
|
||
public int PId { get; set; }
|
||
|
||
public string Title { get; set; }
|
||
public string Message { get; set; }
|
||
|
||
/// <summary>
|
||
/// 0未测评,1已测评
|
||
/// </summary>
|
||
public int Status { get; set; } = 0;
|
||
}
|
||
}
|