Files
notesnook-sync-server_custo…/Notesnook.API/Models/Responses/SignupResponse.cs
2025-04-10 11:09:28 +05:00

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; }
}
}