mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2025-05-24 06:26:06 +08:00
22 lines
431 B
C#
22 lines
431 B
C#
using System;
|
|
|
|
namespace RevokeMsgPatcher.Model
|
|
{
|
|
public class ReplacePattern
|
|
{
|
|
public byte[] Search { get; set; }
|
|
|
|
public byte[] Replace { get; set; }
|
|
|
|
public string Category { get; set; }
|
|
|
|
public ReplacePattern Clone()
|
|
{
|
|
ReplacePattern o = new ReplacePattern();
|
|
o.Search = Search;
|
|
o.Replace = Replace;
|
|
return o;
|
|
}
|
|
}
|
|
}
|