Skip to content

DescriptionSection

Structured description sections with titles, content, and ordering for properties and projects.

Location

docs/models/shared/DescriptionSection.cs

Properties

Property Type Description Example
GroupName string Group/category name (Norwegian: Gruppenavn) "BELIGGENHET", "Location"
Title string Section heading/title (Norwegian: Overskrift) "Bebyggelse", "Features"
Content string Section content/text Plain text description
HtmlContent string Content in HTML format (if available) HTML formatted content
Order int Order/sequence number 1, 2, 3

Usage Example

var section = new DescriptionSection
{
    GroupName = "LOCATION",
    Title = "Neighborhood",
    Content = "Situated in a quiet residential area with excellent access to schools, shopping, and public transport.",
    Order = 1
};

// With HTML content
var sectionWithHtml = new DescriptionSection
{
    GroupName = "DESCRIPTION",
    Title = "Interior",
    Content = "Modern interior with high-quality finishes throughout.",
    HtmlContent = "<p>Modern interior with <strong>high-quality finishes</strong> throughout.</p>",
    Order = 2
};

Common Group Names

  • LOCATION / BELIGGENHET - Location and neighborhood information
  • DESCRIPTION / BESKRIVELSE - Property description
  • FEATURES / FASILITETER - Features and amenities
  • OUTDOOR / UTOMHUS - Outdoor areas
  • TECHNICAL / TEKNISK - Technical specifications

Common Titles

  • Neighborhood / Nabolag - About the area
  • Transportation / Transport - Public transport access
  • Interior / Interiør - Interior description
  • Outdoor Areas / Uteareal - Garden, terrace, balcony
  • Parking / Parkering - Parking information

Used By

  • Estate
  • Project

Download