|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace XHZB.Model
- {
- public class TsubjectbookListModel
- {
-
-
-
- public string tbid { get; set; }
-
-
-
-
- public int lsbid { get; set; }
-
-
-
-
- public string selected { get; set; }
-
-
-
-
- public int subjectid { get; set; }
-
-
-
-
- public string subjectname { get; set; }
-
-
-
-
- public string bookname { get; set; }
-
-
-
-
- public string coverpath { get; set; }
- }
- }
|