Showing
Scheduled showing/open house information for properties.
Note: The class name is
Showing(stored inShowing.csfile). Previously referred to as "Viewing".
Location
Properties
| Property | Type | Description | Example |
|---|---|---|---|
ShowingId |
string |
Showing unique identifier (Vitec: showingId) | "SHOW-001" |
Start |
DateTime? |
Start date and time of the showing (Vitec: start) | 2025-11-15T14:00:00 |
End |
DateTime? |
End time of the showing (Vitec: end) | 2025-11-15T16:00:00 |
Type |
int |
Type of showing as enum from source system (Vitec: showingType) | 0, 1, 2, etc. |
Notes |
string |
Additional notes about the showing | "Ring doorbell on arrival" |
RegistrationUrl |
string |
Registration/signup URL | "https://booking.example.com/show123" |
Usage Example
var showing = new Showing
{
ShowingId = "SHOW-001",
Start = new DateTime(2025, 11, 15, 14, 0, 0),
End = new DateTime(2025, 11, 15, 16, 0, 0),
Type = 1, // Vitec enum value for showing type
Notes = "Please use the main entrance. Parking available in front.",
RegistrationUrl = "https://booking.example.com/register/show123"
};
Showing Type Values
Note: The exact integer enum values and their meanings depend on the source system (e.g., Vitec). Refer to the source system API documentation for the specific enum mappings.
Common Showing Types (for reference)
- Open House - Open to public, no registration required
- Private Showing - By appointment only
- Virtual Showing - Online video tour
- Group Showing - Multiple potential buyers at once
- Agent-Guided Tour - Personal tour with agent
Norwegian Context
In Norway, showings (visninger) are common practice: - Ă…pen visning - Open house (most common) - Avtalt visning - By appointment - Digital visning - Virtual/online showing
Used By
- Estate
Download
- Download Showing.cs - Complete C# source code