#region 描述 //----------------------------------------------------------------------------- // 文 件 名: Attractions // 作 者:ChinaYi // 创建时间:2014/6/11 14:09:15 // 描 述:封装景点详细信息 // 版 本:4.0.30319.1022 //----------------------------------------------------------------------------- // 历史更新纪录 //----------------------------------------------------------------------------- // 版 本: 修改时间: 修改人: // 修改内容: //----------------------------------------------------------------------------- // Copyright (C) 20013-2014 泛美商务 //----------------------------------------------------------------------------- #endregion using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { public class Attractions { private string name; //景点名称 public string Name { get { return name; } set { name = value; } } private string summary; //景点摘要 public string Summary { get { return summary; } set { summary = value; } } private string description; //景点详情 public string Description { get { return description; } set { description = value; } } private string price; //景点票价 public string Price { get { return price; } set { price = value; } } private string open_time; //售票时间 public string Open_time { get { return open_time; } set { open_time = value; } } private string ticketsIncentives; //门票优惠政策 public string TicketsIncentives { get { return ticketsIncentives; } set { ticketsIncentives = value; } } } }