package com.allfree.allfreespringbackend.model; import lombok.Getter; @Getter public class ArticleUpdateRequestDTO { private String title; private String description; private String location; private String email; private String phone; }