All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.serphacker.serposcope.models.base.Event Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
/* 
 * Serposcope - SEO rank checker https://serposcope.serphacker.com/
 * 
 * Copyright (c) 2016 SERP Hacker
 * @author Pierre Nogues 
 * @license https://opensource.org/licenses/MIT MIT License
 */
package com.serphacker.serposcope.models.base;

import java.time.LocalDate;


public class Event {
    int groupId;
    LocalDate day;
    String title;
    String description;

    public Event() {
    }
    
    public Event(int groupId, LocalDate day, String title, String description) {
        this.groupId = groupId;
        this.day = day;
        this.title = title;
        this.description = description;
    }

    public int getGroupId() {
        return groupId;
    }

    public void setGroupId(int groupId) {
        this.groupId = groupId;
    }

    public LocalDate getDay() {
        return day;
    }

    public void setDay(LocalDate day) {
        this.day = day;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }
    
    
    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy