温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:燕赵宽频点播系统V1.0源码
当前文件路径:hevod/Model/Basic.cs

1using System; 2
using System.Collections.Generic; 3
using System.Text; 4
5
namespace Model 6
{ 7
/// <summary> 8
/// 基本信息basic 9
/// </summary> 10
public class Basic 11
{ 12
private int _id; 13
private string _title; 14
private string _context; 15
16
public int Id 17
{ 18
get { return _id; } 19
set { _id = value; } 20
} 21
22
public string Title 23
{ 24
get { return _title; } 25
set { _title = value; } 26
} 27
28
public string Context 29
{ 30
get { return _context; } 31
set { _context = value; } 32
} 33
} 34
} 35





}