| 12345678910111213141516171819 |
- using System;
- using Comal.Classes;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class DeliveryItemBarcodeShell : Shell<DeliveryItemBarcodeModel, DeliveryItem>
- {
- protected override void ConfigureColumns(ShellColumns<DeliveryItemBarcodeModel, DeliveryItem> columns)
- {
- columns
- .Map(nameof(Barcode), x => x.Barcode)
- ;
- }
-
- public String Barcode => Get<String>();
- }
- }
|