mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
10 lines
308 B
C#
10 lines
308 B
C#
using Stats.Dtos;
|
|
|
|
namespace WebfrontCore.QueryHelpers.Models;
|
|
|
|
public class ChatResourceRequest : ChatSearchQuery
|
|
{
|
|
public bool HasData => !string.IsNullOrEmpty(MessageContains) || !string.IsNullOrEmpty(ServerId) ||
|
|
ClientId is not null || SentAfterDateTime is not null;
|
|
}
|