18 lines
403 B
C#
18 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OnProfNext.Shared.Models
|
|
{
|
|
public class ProjectUser
|
|
{
|
|
public int ProjectId { get; set; }
|
|
public Project Project { get; set; } = null!;
|
|
|
|
public int UserId { get; set; }
|
|
public User User { get; set; } = null!;
|
|
}
|
|
}
|