Добавьте файлы проекта.

This commit is contained in:
2024-03-13 21:27:23 +04:00
parent 6c3308b665
commit cbaa21c016
40 changed files with 4115 additions and 0 deletions

22
musicschoolapp/User.cs Normal file
View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код был создан из шаблона.
//
// Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
// Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
// </auto-generated>
//------------------------------------------------------------------------------
namespace musicschoolapp
{
using System;
using System.Collections.Generic;
public partial class User
{
public int UserID { get; set; }
public string username { get; set; }
public string password { get; set; }
public int permission_level { get; set; }
}
}