mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 11:20:05 +01:00
7 lines
156 B
C#
7 lines
156 B
C#
namespace QuotifyBE.DTOs;
|
|
public class NewCategoryDTO
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string? Description { get; set; }
|
|
}
|