mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 11:12:44 +00:00
15 lines
351 B
C#
15 lines
351 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; }
|
|
}
|
|
}
|