Table of Contents

Class ProjectBuilderTag

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

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

public class ProjectBuilderTag
Inheritance
ProjectBuilderTag
Inherited Members

Remarks

This entity establishes the association between a project and a builder tag, allowing projects to have multiple tags and tags to be associated with multiple projects. This enables categorization and matching of projects with users who have similar tags.

Properties

BuilderTag

Gets or sets the builder tag associated with this project.

public BuilderTag BuilderTag { get; set; }

Property Value

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

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 projects and builder tags, indicating which tags are associated with a project.

Project

Gets or sets the project associated with this tag.

public Project Project { get; set; }

Property Value

Project
Represents the many-to-many relationship between projects and builder tags, indicating which tags are associated with a project.

ProjectId

Gets or sets the unique identifier of the project.

public Guid ProjectId { get; set; }

Property Value

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