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

1using System; 2
using System.Collections.Generic; 3
using System.Text; 4
5
namespace Model 6
{ 7
/// <summary> 8
/// 影片产地 9
/// </summary> 10
public class FromCountry 11
{ 12
private int _id; 13
private string _caption; 14
15
public int Id 16
{ 17
get { return _id; } 18
set { _id = value; } 19
} 20
public string Caption 21
{ 22
get { return _caption; } 23
set { _caption=value;} 24
} 25
} 26
} 27





}