0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-api.git synced 2025-06-29 18:21:11 +00:00
shopping-assistant-api/ShoppingAssistantApi.Application/Models/CreateDtos/RoleCreateDto.cs
2023-09-22 23:02:20 +03:00

7 lines
134 B
C#

namespace ShoppingAssistantApi.Application.Models.CreateDtos;
public class RoleCreateDto
{
public string Name { get; set; }
}