Untitled

mail@pastecode.io avatar
unknown
plain_text
11 days ago
710 B
3
Indexable
Never
// This is stored json in DB

{    "DeltaX": "{\"enabled\":true,\"details\":null}",    "Google": "{\"enabled\":true,\"details\":{ \"client_id\":\"306874698341-h5e7q5psd2m5jf25cqup9horgs6vbaip.apps.googleusercontent.com\"}}",    "Microsoft": "{\"enabled\":true,\"details\":{ \"client_id\":\"4c04fd2b-32e9-470c-ba22-c9ab13d7bfd9\"}}"  }

// My classs structure
public class LoginProviders
{
    public Provider DeltaX { get; set; }
 
    public Provider Google { get; set; }

    public Provider Microsoft { get; set; }
}

public class Provider
{
    public bool Enabled { get; set; }

    public ProviderDetails Details { get; set; }
}

public class ProviderDetails
{
    public string ClientId { get; set; }
}
Leave a Comment