mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
13 lines
318 B
C#
13 lines
318 B
C#
using System.Runtime.Serialization;
|
|
using System.Text.Json.Serialization;
|
|
using Streetwriters.Common.Enums;
|
|
using Streetwriters.Common.Interfaces;
|
|
|
|
namespace Streetwriters.Common.Messages
|
|
{
|
|
public class DeleteUserMessage
|
|
{
|
|
[JsonPropertyName("userId")]
|
|
public string UserId { get; set; }
|
|
}
|
|
} |