class Agoravoting::Proposal

Attributes

description[RW]
title[RW]

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/agoravoting/proposal.rb, line 5
def initialize(attributes = {})
  @title  = attributes[:title]
  @description = attributes[:description]
end