ProgressUserList.cs 337 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class ProgressUserList
  6. {
  7. public decimal LastMonth { get; set; }
  8. public decimal ThisMonth { get; set; }
  9. public int IsOk { get; set; }
  10. public int UserId { get; set; }
  11. public string ParentNav { get; set; }
  12. }
  13. }