using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VentaUniformes.Application.Sesion.Commands.CreateSesion { public class CreateSesionModel { public string Token { get; set; } public int Role { get; set; } public int UserId { get; set; } } }