InformationNew.cs 485 B

12345678910111213141516171819
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace LogoForceTestApp.Modules.MainModule.Models
  8. {
  9. public class InformationNew : BindableBase
  10. {
  11. public string OperatorCode { get; set; }
  12. public string ProCode { get; set; }
  13. public int SpendTime { get; set; }
  14. public DateTime CreateTime { get; set; }
  15. public Guid Id { get; set; }
  16. }
  17. }