using System; using Comal.Classes; using InABox.Mobile; namespace PRS.Mobile { public class MeetingItemShell : Shell { protected override void ConfigureColumns(ShellColumns columns) { columns .Map(nameof(ParentID), x => x.Parent.ID) .Map(nameof(Title), x => x.Title) .Map(nameof(Notes), x => x.Notes) .Map(nameof(Minutes), x => x.Minutes) ; } public Guid ParentID => Get(); public String Title => Get(); public String Notes => Get(); public String Minutes => Get(); } }