-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9e584f
commit 358d6a9
Showing
4 changed files
with
23 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
using MBS_COMMAND.Domain.Abstractions.Entities; | ||
|
||
namespace MBS_COMMAND.Domain.Entities; | ||
|
||
public class Group : Entity<Guid>, IAuditableEntity | ||
{ | ||
public string Name { get; set; } | ||
public Guid? MentorId { get; set; } | ||
public string Name { get; set; } | ||
public Guid? MentorId { get; set; } | ||
public virtual User? Mentor { get; set; } | ||
public Guid? LeaderId { get; set; } | ||
public virtual User? Leader { get; set; } | ||
public string Stack { get; set; } | ||
public Guid? ProjectId { get; set; } | ||
public string Stack { get; set; } | ||
|
||
public Guid? SubjectId { get; set; } | ||
public virtual Subject? Subject { get; set; } | ||
|
||
public Guid? ProjectId { get; set; } | ||
public virtual Project? Project { get; set; } | ||
|
||
public double? BookingPoints { get; set; } | ||
public DateTimeOffset CreatedOnUtc { get; set; } | ||
public DateTimeOffset? ModifiedOnUtc { get; set; } | ||
public virtual ICollection<Group_Student_Mapping>? Members { get; set; } = []; | ||
|
||
|
||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters