generated from egmont11/ASP.Net-Core-MVC-Template
Odstranění zbytečných stránek, přidání administrace pro pozvánky.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace StuzkovakWeb.Entities;
|
||||
|
||||
public class InviteEntity
|
||||
{
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
public required string TeacherName { get; set; }
|
||||
public bool? IsAccepted { get; set; } = null;
|
||||
}
|
||||
Reference in New Issue
Block a user