package com.suno.android.common_data.mentions /** * Represents a user mention within comment, caption, etc. */ data class UserMention( val start: Int, val end: Int, val handle: String, val displayName: String, )