TargetInfo.cs 549 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace RevokeMsgPatcher.Model
  7. {
  8. public class TargetInfo
  9. {
  10. public string Name { get; set; }
  11. public string RelativePath { get; set; }
  12. public string Memo { get; set; }
  13. public TargetInfo Clone()
  14. {
  15. TargetInfo o = new TargetInfo();
  16. o.Name = Name;
  17. o.RelativePath = RelativePath;
  18. o.Memo = Memo;
  19. return o;
  20. }
  21. }
  22. }