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

com.commercetools.sunrise.framework.viewmodels.TitleDescriptionViewModel Maven / Gradle / Ivy

The newest version!
package com.commercetools.sunrise.framework.viewmodels;

import io.sphere.sdk.models.LocalizedString;

public abstract class TitleDescriptionViewModel extends ViewModel {

    private LocalizedString title;
    private LocalizedString description;

    public TitleDescriptionViewModel() {
    }

    public LocalizedString getTitle() {
        return title;
    }

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

    public LocalizedString getDescription() {
        return description;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy