Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using Newtonsoft.Json;
- namespace Server.Models
- {
- public class UsernamePassword
- {
- [JsonProperty ( PropertyName = "username" )]
- public string Username { get; set; }
- [JsonProperty ( PropertyName = "password" )]
- public string Password { get; set; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment