LSFE/LSFE.Infrastructure/Model/Users.cs
2026-07-30 10:31:04 +08:00

16 lines
332 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Model
{
public class Users
{
public string? UserName { get; set; }
public string? Password { get; set; }
}
}