You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dotnet-WebAPI/AppContext/Entities/MemberEntity.cs

15 lines
297 B

using Model;
namespace AppContext.Entities;
public class MemberEntity
{
public int TeamId { get; set; }
public TeamEntity? Team { get; set; }
public required int UserId { get; set; }
public UserEntity? User { get; set; }
public required MemberRole Role { get; set; }
}