WICKED CORRUPTION

free sapphic mafia romance

back to shop

$0.00

She was called a Black Widow for a reason.

I just never thought I'd see it firsthand. Or that it'd be my brother.

But she saved me. The bitch actually saved me after I tried to usurp my brother's rule.

Now because of our family's tie, it's either claim her or go to war.

Like she said, it doesn't matter which head of the family she marries, just that she does.

So begrudgingly, I'll take her. And no matter what she says, I won't be falling for her.

short, dark, smutty. 

Please see full trigger warnings page on my website.

You will receive download links via email from BookFunnel. Send to your preferred reading device (including Kindle, Nook, Tablet, etc) and enjoy!

Any problems, just shoot me an email at contact@ellemaebooks.com.

YOU MAY ALSO LIKE

the sweetest sacrifice

SAPPHIC DEMON ROMANCE

buy now

LOVE ME NOT

FORBIDDEN ESCORT ROMANCE

buy now

BEHIND THE SCENES

SAPPHIC STALKER ROMANCE

buy now
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class CheckoutController { @GetMapping("/checkout") public Map checkout( @RequestParam String products, @RequestParam(required = false) String coupon) { // Parse products Map productQuantities = new HashMap<>(); for (String productEntry : products.split(",")) { String[] parts = productEntry.split(":"); productQuantities.put( parts[0], // Product ID Integer.parseInt(parts[1]) // Quantity ); } // Build result Map result = new HashMap<>(); result.put("products", productQuantities); result.put("coupon", coupon != null ? coupon : "No coupon applied"); return result; } }