Skip to content

Instantly share code, notes, and snippets.

@fatihdumanli
Created November 3, 2020 06:45
Show Gist options
  • Save fatihdumanli/31d8ce9c0a8eac35f8b32dec5e666371 to your computer and use it in GitHub Desktop.
Save fatihdumanli/31d8ce9c0a8eac35f8b32dec5e666371 to your computer and use it in GitHub Desktop.
Secured service
[Route("/user/{UserId}/set/email", "POST")]
[Authenticate]
public class SetEmail : IReturn<bool>
{
public Guid UserId { get; set; }
public string Email { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment