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

13 lines
279 B

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 string Role { get; set; }
}