1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- public class ViewCarDataAndGuide
- {
- int id;
- public int Id
- {
- get { return id; }
- set { id = value; }
- }
- string unitArea;
- public string UnitArea
- {
- get { return unitArea; }
- set { unitArea = value; }
- }
- string unitName;
- public string UnitName
- {
- get { return unitName; }
- set { unitName = value; }
- }
- string contact;
- public string Contact
- {
- get { return contact; }
- set { contact = value; }
- }
- string tel;
- public string Tel
- {
- get { return tel; }
- set { tel = value; }
- }
- int score;
- public int Score
- {
- get { return score; }
- set { score = value; }
- }
- string operatorsDate;
- public string OperatorsDate
- {
- get { return operatorsDate; }
- set { operatorsDate = value; }
- }
- float price;
- public float Price
- {
- get { return price; }
- set { price = value; }
- }
- string currency;
- public string Currency
- {
- get { return currency; }
- set { currency = value; }
- }
- }
- }
|