12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #region 描述
- #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; }
- }
-
- }
- }
|