using System; using InABox.Core; using InABox.Mobile; namespace PRS.Mobile { public class AuditTrailShell : Shell { protected override void ConfigureColumns(ShellColumns columns) { columns .Map(nameof(TimeStamp), x => x.Timestamp) .Map(nameof(User), x => x.User) .Map(nameof(Note), x => x.Note) ; } public DateTime TimeStamp => Get(); public String User => Get(); public String Note => Get(); } }