15 lines
280 B
C#
15 lines
280 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Cloud.Requests;
|
||
|
|
||
|
public class RegisterRequest
|
||
|
{
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
public string Email { get; set; }
|
||
|
|
||
|
public string Password { get; set; }
|
||
|
}
|