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