Your IP : 216.73.216.86


Current Path : /home/emeraadmin/www/Classes/
Upload File :
Current File : /home/emeraadmin/www/Classes/Schedules.php

<?php

class Schedules
{
    public $id;
    public $schedule_name;
    public $created_by;
    public $completed;
    public $created_at;
    public $updated_at;

    public function __construct($id, $schedule_name, $created_by, $completed, $created_at, $updated_at)
    {
        $this->id = $id;
        $this->schedule_name = $schedule_name;
        $this->created_by = $created_by;
        $this->completed = $completed;
        $this->created_at = $created_at;
        $this->updated_at = $updated_at;
    }

    /**
     * @return mixed
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * @param mixed $id
     */
    public function setId($id): void
    {
        $this->id = $id;
    }

    /**
     * @return mixed
     */
    public function getScheduleName()
    {
        return $this->schedule_name;
    }

    /**
     * @param mixed $schedule_name
     */
    public function setScheduleName($schedule_name): void
    {
        $this->schedule_name = $schedule_name;
    }

    /**
     * @return mixed
     */
    public function getCreatedBy()
    {
        return $this->created_by;
    }

    /**
     * @param mixed $created_by
     */
    public function setCreatedBy($created_by): void
    {
        $this->created_by = $created_by;
    }

    /**
     * @return mixed
     */
    public function getCompleted()
    {
        return $this->completed;
    }

    /**
     * @param mixed $completed
     */
    public function setCompleted($completed): void
    {
        $this->completed = $completed;
    }

    /**
     * @return mixed
     */
    public function getCreatedAt()
    {
        return $this->created_at;
    }

    /**
     * @param mixed $created_at
     */
    public function setCreatedAt($created_at): void
    {
        $this->created_at = $created_at;
    }

    /**
     * @return mixed
     */
    public function getUpdatedAt()
    {
        return $this->updated_at;
    }

    /**
     * @param mixed $updated_at
     */
    public function setUpdatedAt($updated_at): void
    {
        $this->updated_at = $updated_at;
    }


}

?>