27 lines
518 B
C#
27 lines
518 B
C#
using MediatR;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
|
|
namespace Jambo.Auth.Application.Commands
|
|
{
|
|
[DataContract]
|
|
public class LoginCommand : IRequest
|
|
{
|
|
[Required]
|
|
[DataMember]
|
|
public Guid UserId { get; private set; }
|
|
|
|
[Required]
|
|
[DataMember]
|
|
public Guid SchoolId { get; private set; }
|
|
|
|
public LoginCommand()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|