mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
c7eb08a0f0
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
15 lines
355 B
C#
15 lines
355 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Authentication
|
|
{
|
|
public class User : ModelBase
|
|
{
|
|
public Guid Identifier { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string Salt { get; set; }
|
|
public int Iterations { get; set; }
|
|
}
|
|
}
|