13 lines
239 B
C#
13 lines
239 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cloud.Requests;
|
|
|
|
public class LoginRequest
|
|
{
|
|
public string Email { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
} |