mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2025-07-09 01:02:39 +08:00
27 lines
549 B
C#
27 lines
549 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RevokeMsgPatcher.Model
|
|
{
|
|
public class TargetInfo
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string RelativePath { get; set; }
|
|
|
|
public string Memo { get; set; }
|
|
|
|
public TargetInfo Clone()
|
|
{
|
|
TargetInfo o = new TargetInfo();
|
|
o.Name = Name;
|
|
o.RelativePath = RelativePath;
|
|
o.Memo = Memo;
|
|
return o;
|
|
}
|
|
}
|
|
}
|