birbmap/Birdmap/Models/User.cs

15 lines
303 B
C#
Raw Normal View History

2020-10-21 17:04:54 +02:00
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; }
}
}