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/TripSummaryCell.cs
2022-11-03 16:41:13 -04:00

32 lines
759 B
C#

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
using System;
using Foundation;
using UIKit;
namespace MyDriving.iOS
{
public partial class TripSummaryCell : UITableViewCell
{
public TripSummaryCell(IntPtr handle) : base(handle)
{
}
public TripSummaryCell(NSString cellId) : base(UITableViewCellStyle.Default, cellId)
{
}
public string Name
{
get { return nameLabel.Text; }
set { nameLabel.Text = value; }
}
public string Value
{
get { return valueLabel.Text; }
set { valueLabel.Text = value; }
}
}
}