aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Database/Project/ProjectMember.cs
blob: caf52c2ea74bf6980f1e39edb7eaabb588eb75ec (plain) (blame)
1
2
3
4
5
6
7
8
namespace IOL.GreatOffice.Api.Models.Database;

public class ProjectMember : Base
{
    public Project Project { get; set; }
    public User User { get; set; }
    public ProjectRole Role { get; set; }
}