Cucumber/Cloud/Requests/RegisterRequest.cs

15 lines
280 B
C#
Raw Normal View History

2024-10-28 18:39:13 +04:00
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; }
}