mirror of
https://github.com/WowLegacyCore/HermesProxy
synced 2026-08-14 20:32:05 -04:00
12 lines
244 B
C#
12 lines
244 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Framework.Web.API
|
|
{
|
|
public class ApiRequest<T>
|
|
{
|
|
public uint? SearchId { get; set; }
|
|
public Func<T, bool> SearchFunc { get; set; }
|
|
}
|
|
}
|