com.gu.memsub.FullName.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of membership-common_2.12 Show documentation
Show all versions of membership-common_2.12 Show documentation
Scala library for common Guardian Membership/Subscriptions functionality.
package com.gu.memsub
import com.gu.i18n.Title
trait FullName {
def first: String
def last: String
def title: Option[Title]
}