1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-13 00:28:10 -05:00

add "advanced" search functionality

This commit is contained in:
RaidMax
2023-01-23 16:38:16 -06:00
parent c961d4e953
commit 4c51d86fae
24 changed files with 771 additions and 44 deletions

View File

@ -0,0 +1,22 @@
using System;
using Data.Models;
using Data.Models.Client;
namespace WebfrontCore.QueryHelpers.Models;
public class ClientResourceResponse
{
public int ClientId { get; set; }
public int AliasId { get; set; }
public int LinkId { get; set; }
public string CurrentClientName { get; set; }
public string MatchedClientName { get; set; }
public int? CurrentClientIp { get; set; }
public int? MatchedClientIp { get; set; }
public string ClientCountryCode { get; set; }
public string ClientCountryDisplayName { get; set; }
public string ClientLevel { get; set; }
public EFClient.Permission ClientLevelValue { get; set; }
public DateTime LastConnection { get; set; }
public Reference.Game Game { get; set; }
}