Add domainmodell admin (#34)

This commit is contained in:
MET18937
2023-06-22 22:58:49 +02:00
committed by GitHub
parent 4b5f0c2b96
commit e317144914
4 changed files with 146 additions and 7 deletions

View File

@ -0,0 +1,7 @@
namespace WebApi.Models;
public partial class Admin
{
public int Id { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}