15 lines
303 B
C#
15 lines
303 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Birdmap.Models
|
|||
|
{
|
|||
|
public class User
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public byte[] PasswordHash { get; set; }
|
|||
|
public byte[] PasswordSalt { get; set; }
|
|||
|
}
|
|||
|
}
|