mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 15:40:07 +01:00
feat: basic category controller (create & retrieve)
This commit is contained in:
6
DTOs/NewCategoryDTO.cs
Normal file
6
DTOs/NewCategoryDTO.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace QuotifyBE.DTOs;
|
||||
public class NewCategoryDTO
|
||||
{
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string? Description { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user