12 lines
296 B
C#
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);
|
|
}
|
|
} |