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); } }