@TypeConverter
    fun stringListToJson(stringList: List<String>?): String? {
        return gson.toJson(stringList)
    }