| Net-Trac documentation | Contained in the Net-Trac distribution. |
Net::Trac::TicketPropChange - A single property change in a Trac ticket history entry
A very simple class to represent a single property change in a history entry.
Copyright 2008-2009 Best Practical Solutions.
This package is licensed under the same terms as Perl 5.8.8.
| Net-Trac documentation | Contained in the Net-Trac distribution. |
use strict; use warnings; package Net::Trac::TicketPropChange; use Any::Moose;
has property => ( isa => 'Str', is => 'rw' ); has old_value => ( isa => 'Str', is => 'rw' ); has new_value => ( isa => 'Str', is => 'rw' );
__PACKAGE__->meta->make_immutable; no Any::Moose; 1;