This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/MobileApps/MyDriving/MyDriving.iOS/Cells/TripTableViewCell.cs

30 lines
610 B
C#
Raw Normal View History

2022-11-03 20:41:13 +00:00
using Foundation;
using System;
using UIKit;
namespace MyDriving.iOS
{
public partial class TripTableViewCell : UITableViewCell
{
public TripTableViewCell(IntPtr handle) : base(handle) { }
public TripTableViewCell(NSString cellId) : base(UITableViewCellStyle.Default, cellId) { }
public string LocationName
{
get { return lblTitle.Text; }
set { lblTitle.Text = value; }
}
public string TimeAgo
{
get { return lblDaysAgo.Text; }
set { lblDaysAgo.Text = value; }
}
public string Distance
{
get { return lblMiles.Text; }
set { lblMiles.Text = value; }
}
}
}