mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
7 lines
134 B
C#
7 lines
134 B
C#
namespace ShoppingAssistantApi.Application.Models.CreateDtos;
|
|
|
|
public class RoleCreateDto
|
|
{
|
|
public string Name { get; set; }
|
|
}
|