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

This commit is contained in:
zxckawory
2026-09-03 20:49:08 +03:00
parent b76a11ae22
commit e221eda36a
35 changed files with 975 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace zooManagerPro.Models;
public partial class Employee
{
public int Id { get; set; }
public string Login { get; set; } = null!;
public string Password { get; set; } = null!;
public virtual ICollection<AnimalsFeeding> AnimalsFeedings { get; set; } = new List<AnimalsFeeding>();
}