summaryrefslogtreecommitdiff
path: root/DTOs/GroupDTO.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DTOs/GroupDTO.cs')
-rw-r--r--DTOs/GroupDTO.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/DTOs/GroupDTO.cs b/DTOs/GroupDTO.cs
new file mode 100644
index 0000000..345c529
--- /dev/null
+++ b/DTOs/GroupDTO.cs
@@ -0,0 +1,6 @@
+namespace LibraryAPI.DTOs {
+ public class GroupDTO {
+ public long Id { get; set; }
+ public string? Name { get; set; }
+ }
+} \ No newline at end of file