VentaUniformes/src/VentaUniformes.Application/Sesion/Commands/CreateSesion/CreateSesionModel.cs

17 lines
358 B
C#

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; }
}
}