Attachment.cs 652 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models
  6. {
  7. /// <summary>
  8. /// 临时附件类
  9. /// </summary>
  10. public class Attachment
  11. {
  12. string name;
  13. /// <summary>
  14. /// 附件名称
  15. /// </summary>
  16. public string Name
  17. {
  18. get { return name; }
  19. set { name = value; }
  20. }
  21. private string fullName;
  22. /// <summary>
  23. /// 附件全名称
  24. /// </summary>
  25. public string FullName
  26. {
  27. get { return fullName; }
  28. set { fullName = value; }
  29. }
  30. }
  31. }