pictureServer/PictureFilesApi/Models/UserInfo.cs

14 lines
264 B
C#
Raw Normal View History

2026-03-10 09:04:34 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LongHuParkApi.Models
{
public class UserInfo
{
public string username { get; set; }
public string password { get; set; }
}
}