namespace Manager.YouTube.Util.Cipher.Operations; public class CipherSlice(int indexToSlice) : ICipherOperation { public string Decipher(string cipherSignature) => cipherSignature[indexToSlice..]; }