温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:燕赵宽频点播系统V1.0源码
当前文件路径:hevod/Model/commendFilm.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 commendFilm 11
{ 12
private int _id; 13
private string _filmUrl; 14
public int Id 15
{ 16
get { return _id; } 17
set { _id = value; } 18
} 19
public string FilmUrl 20
{ 21
get { return _filmUrl; } 22
set { _filmUrl = value; } 23
} 24
} 25
} 26





}