School.cs
392 Bytes
using System;
using System.Collections.Generic;
using System.Text;
namespace Quiz.Models
{
public class School
{
public int Id { get; set; }
public string AreaCode { get; set; }
public string SchoolName { get; set; }
public int SchoolType { get; set; }
public int OrderId { get; set; }
public string ClassName { get; set; }
}
}