mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-08-12 19:40:47 +02:00
20 lines
527 B
C#
20 lines
527 B
C#
using System.Text.Json.Serialization;
|
|
using Streetwriters.Common.Enums;
|
|
|
|
namespace Streetwriters.Common.Messages
|
|
{
|
|
public class EmailConfirmedMessage
|
|
{
|
|
[JsonPropertyName("userId")]
|
|
public required string UserId { get; set; }
|
|
|
|
[JsonPropertyName("clientId")]
|
|
public required string ClientId { get; set; }
|
|
|
|
[JsonPropertyName("appId")]
|
|
public ApplicationType AppId { get; set; }
|
|
|
|
[JsonPropertyName("confirmedAt")]
|
|
public long ConfirmedAt { get; set; }
|
|
}
|
|
} |