Skip to content

Instantly share code, notes, and snippets.

@pegasme
pegasme / LoginService.cs
Last active June 4, 2025 08:30
Demo Login
using System;
using System.Collections.Generic;
namespace App.Services
{
public enum LoginResult
{
Unknown = 0, Success = 1, WrongLogin = -1, WrongPass = -2, Error
}