Files
notesnook-sync-server_custo…/Notesnook.API/Models/Responses/SignupResponse.cs
2022-12-29 11:18:29 +05:00

15 lines
337 B
C#

using System.Text.Json.Serialization;
using Streetwriters.Common.Models;
namespace Notesnook.API.Models.Responses
{
public class SignupResponse : Response
{
[JsonPropertyName("userId")]
public string UserId { get; set; }
[JsonPropertyName("errors")]
public string[] Errors { get; set; }
}
}