AppealObject.cs 343 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using wispro.sp.entity;
  7. namespace wispro.sp.share
  8. {
  9. public class AppealObject
  10. {
  11. public List<InputFieldValue> inputFieldValues { get; set; }
  12. public List<AttachFile> attachFiles { get; set; }
  13. }
  14. }