added Infrastructure
This commit is contained in:
parent
ba7ac36920
commit
751b08e805
4 changed files with 27 additions and 1 deletions
9
SurveyBackend/SurveyBackend.Core/Models/Group.cs
Normal file
9
SurveyBackend/SurveyBackend.Core/Models/Group.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
namespace SurveyBackend.Core.Models;
|
||||
|
||||
public class Group
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Label { get; set; }
|
||||
|
||||
public ICollection<User> Users { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue