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





}