NewGaoKaoApi/New_College.Model/ViewModels/Result/EvaluationResponse.cs

20 lines
420 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
}
}