so Search.tsf and Search.rdf work
[freeside.git] / FS / FS / h_domain_record.pm
1 package FS::h_domain_record;
2
3 use strict;
4 use vars qw( @ISA );
5 use FS::h_Common;
6 use FS::domain_record;
7
8 @ISA = qw( FS::h_Common FS::domain_record );
9
10 sub table { 'h_domain_record' };
11
12 =head1 NAME
13
14 FS::h_domain_record - Historical DNS entry objects
15
16 =head1 SYNOPSIS
17
18 =head1 DESCRIPTION
19
20 An FS::h_domain_record object represents a historical entry in a DNS zone.
21 FS::h_domain_record inherits from FS::h_Common and FS::domain_record.
22
23 =head1 BUGS
24
25 =head1 SEE ALSO
26
27 L<FS::h_Common>, L<FS::svc_external>, L<FS::Record>, schema.html from the base
28 documentation.
29
30 =cut
31
32 1;
33