first commit

This commit is contained in:
2026-01-07 11:33:05 +08:00
commit fc54ffd43b
215 changed files with 31856 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System.Drawing;
namespace EmoneyInteceptor.Fiddler.Interfaces
{
/// <summary>
/// 为插件提供 fiddler 布局相关的支持
/// </summary>
internal interface IFiddlerLayout
{
/// <summary>
/// fiddler tab view 尺寸变化时调用。
/// </summary>
/// <param name="size"></param>
void OnTabViewSizeChanged(Size size);
}
}