2024-07-10 09:00:36 +02:00

16 lines
291 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Project.Application.DTOs.Incoming
{
public class UpdatingRoleDto
{
public int Id { get; set; }
public string Name { get; set; }
}
}