blob: 383df979272625dcca5b8bd42e4fd512d07c46e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package FixMyStreet::SendReport::Email::TfL;
use Moo;
extends 'FixMyStreet::SendReport::Email::SingleBodyOnly';
has contact => (
is => 'ro',
default => 'Traffic lights'
);
1;
|