|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- namespace XHWK.Model
- {
- public class ModelTsubjectbookList
- {
- private string _tbid;
- private string _lsbid;
- private string _selected;
- private string _subjectid;
- private string _subjectname;
- private string _lsbname;
- private string _coverpath;
- private string _versionname;
-
-
-
-
- public string Tbid { get => _tbid; set => _tbid = value; }
-
-
-
-
- public string Lsbid { get => _lsbid; set => _lsbid = value; }
-
-
-
-
- public string Selected { get => _selected; set => _selected = value; }
-
-
-
-
- public string Subjectid { get => _subjectid; set => _subjectid = value; }
-
-
-
-
- public string Subjectname { get => _subjectname; set => _subjectname = value; }
-
-
-
-
- public string Lsbname { get => _lsbname; set => _lsbname = value; }
-
-
-
-
- public string Coverpath { get => _coverpath; set => _coverpath = value; }
-
-
-
-
- public string Versionname { get => _versionname; set => _versionname = value; }
- }
- }
|