Table of Contents

Class UserBuilderTag

Namespace
Builvero.Domain.Entities
Assembly
Builvero.Domain.dll

Represents the many-to-many relationship between users and builder tags, indicating which tags are associated with a user.

public class UserBuilderTag
Inheritance
UserBuilderTag
Inherited Members

Remarks

This entity establishes the association between a user and a builder tag, allowing users to have multiple tags and tags to be associated with multiple users. This enables categorization and matching of users based on their areas of expertise or interest.

Properties

BuilderTag

Gets or sets the builder tag associated with this user.

public BuilderTag BuilderTag { get; set; }

Property Value

BuilderTag
Represents the many-to-many relationship between users and builder tags, indicating which tags are associated with a user.

BuilderTagId

Gets or sets the unique identifier of the builder tag.

public Guid BuilderTagId { get; set; }

Property Value

Guid
Represents the many-to-many relationship between users and builder tags, indicating which tags are associated with a user.

User

Gets or sets the user associated with this tag.

public User User { get; set; }

Property Value

User
Represents the many-to-many relationship between users and builder tags, indicating which tags are associated with a user.

UserId

Gets or sets the unique identifier of the user.

public Guid UserId { get; set; }

Property Value

Guid
Represents the many-to-many relationship between users and builder tags, indicating which tags are associated with a user.