using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model
{
public class SeVolunterInitializationDto
{
public int Code { get; set; }
public string ProvinceName { get; set; }
///
///
///
public int Policy { get; set; }
public int IsOpen { get; set; }
public int AllScore { get; set; }
public int Years { get; set; }
public List lizations { get; set; }
}
public class LizationDto
{
public string name { get; set; }
///
/// 0文理分科 1 3+3 2 3+1+3
///
public int Policy { get; set; }
public int code { get; set; }
}
}