using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LogoForceTestApp.Modules.MainModule.Models { public class InformationNew : BindableBase { public string OperatorCode { get; set; } public string ProCode { get; set; } public int SpendTime { get; set; } public DateTime CreateTime { get; set; } public Guid Id { get; set; } } }