mirror of
https://github.com/yummy4friends/y4f.git
synced 2025-07-19 00:15:53 +02:00
8 lines
164 B
C#
8 lines
164 B
C#
namespace WebApi.Models;
|
|
public partial class Admin
|
|
{
|
|
public int Id { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
}
|