mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2025-05-24 06:26:06 +08:00
24 lines
469 B
C#
24 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RevokeMsgPatcher.Model
|
|
{
|
|
public class TargetFile
|
|
{
|
|
public string FileName { get; set; }
|
|
|
|
public string Version { get; set; }
|
|
|
|
public string SHA1Before { get; set; }
|
|
|
|
public string SHA1After { get; set; }
|
|
|
|
public long Position { get; set; }
|
|
|
|
public byte Content { get; set; }
|
|
}
|
|
}
|