class Role { readonly id : string; constructor(id : string) { this.id = id; } } export { Role }