RevokeMsgPatcher/RevokeMsgPatcher/Model/ReplacePattern.cs

20 lines
385 B
C#

using System;
namespace RevokeMsgPatcher.Model
{
public class ReplacePattern
{
public byte[] Search { get; set; }
public byte[] Replace { get; set; }
public ReplacePattern Clone()
{
ReplacePattern o = new ReplacePattern();
o.Search = Search;
o.Replace = Replace;
return o;
}
}
}