Net::Trac::TicketPropChange - A single property change in a Trac ticket history entry


Net-Trac documentation Contained in the Net-Trac distribution.

Index


Code Index:

NAME

Top

Net::Trac::TicketPropChange - A single property change in a Trac ticket history entry

DESCRIPTION

Top

A very simple class to represent a single property change in a history entry.

ACCESSORS

Top

property

old_value

new_value

LICENSE

Top

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;