1use borsh::{BorshDeserialize, BorshSerialize};
23#[derive(Debug, BorshSerialize, BorshDeserialize)]
4pub struct WhitelistValidatorForProgramArgs {
5/// If `true`, insert the validator identity into the program whitelist,
6 /// otherwise remove it.
7pub insert: bool,
8}