refactoring package 'dto' to 'model'

This commit is contained in:
francesco 2020-03-06 16:01:12 +01:00
parent 5a5fe0149c
commit 0e2ad42c58
4 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ package org.gcube.app.springbootangulardemo.controller;
import java.util.concurrent.atomic.AtomicLong;
import org.gcube.app.springbootangulardemo.dto.Greeting;
import org.gcube.app.springbootangulardemo.model.Greeting;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

View File

@ -1,4 +1,4 @@
package org.gcube.app.springbootangulardemo.dto;
package org.gcube.app.springbootangulardemo.model;
import java.util.Objects;