neat ``` inline class Recipient (val recipients: M...
# announcements
d
neat
Copy code
inline class Recipient (val recipients: MutableList<String>) {
    constructor(recipient: String) : this(recipient.split(";").toMutableList())
}