mirror of
https://github.com/miawinter98/just-short-it.git
synced 2024-11-10 03:59:53 +00:00
16 lines
413 B
C#
16 lines
413 B
C#
using JustShortIt.Model;
|
|
|
|
namespace JustShortIt.Service;
|
|
|
|
public class AuthenticationService {
|
|
private User User { get; }
|
|
|
|
public AuthenticationService(User user) {
|
|
User = user;
|
|
}
|
|
|
|
public bool IsUser(string username, string password) {
|
|
return string.Equals(User.Username, username, StringComparison.CurrentCultureIgnoreCase) &&
|
|
User.Password == password;
|
|
}
|
|
} |