From e36646a2b9aa6941d9c93f044c7fd43b17bf626a Mon Sep 17 00:00:00 2001 From: Bird Date: Sun, 8 Dec 2024 17:55:27 +0200 Subject: [PATCH] fix: rename Student to StudentDto --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fd9c0a0..ade017b 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,7 @@ To start using the library, follow these steps: @Override protected Class getDTO() { - return Student.class; + return StudentDto.class; } @Override protected FilterSet configFilterSet() { @@ -184,7 +184,7 @@ To start using the library, follow these steps: @Override protected Class getDTO() { - return Student.class; + return StudentDto.class; } @Override protected FilterSet configFilterSet() {