JOBot/JOBot.TClient/Infrastructure/Extensions/GRpcModelsExtensions.cs
2025-07-25 16:37:42 +03:00

12 lines
296 B
C#

using JOBot.Proto;
namespace JOBot.TClient.Infrastructure.Extensions;
public static class GRpcModelsExtensions
{
public static bool IsPrepared(this GetUserResponse user)
{
return user is { Eula: true, IsLogged: true } &&
!string.IsNullOrEmpty(user.CVUrl);
}
}