Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/.config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"version": 1,
"isRoot": true,
"tools": {
"kentico.xperience.dbmanager": {
"version": "30.6.2",
"commands": [
"kentico-xperience-dbmanager"
],
"rollForward": false
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ public partial class NatureSpotlightEmail : IEmailFieldsSource


/// <summary>
/// NatureSpotlightTopic.
/// NatureSpotlightName.
/// </summary>
public string NatureSpotlightTopic { get; set; }
public string NatureSpotlightName { get; set; }


/// <summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
//--------------------------------------------------------------------------------------------------
// <auto-generated>
//
// This code was generated by code generator tool.
//
// To customize the code use your own partial class. For more info about how to use and customize
// the generated code see the documentation at https://docs.xperience.io/.
//
// </auto-generated>
//--------------------------------------------------------------------------------------------------

using System;
using System.Collections.Generic;
using CMS.ContentEngine;
using CMS.EmailLibrary;

namespace TrainingGuides
{
/// <summary>
/// Represents an email of type <see cref="SubscriptionConfirmationEmail"/>.
/// </summary>
[RegisterContentTypeMapping(CONTENT_TYPE_NAME)]
public partial class SubscriptionConfirmationEmail : IEmailFieldsSource
{
/// <summary>
/// Code name of the content type.
/// </summary>
public const string CONTENT_TYPE_NAME = "TrainingGuides.SubscriptionConfirmationEmail";


/// <summary>
/// Represents system properties for an email item.
/// </summary>
[SystemField]
public EmailFields SystemFields { get; set; }


/// <summary>
/// EmailSubject.
/// </summary>
public string EmailSubject { get; set; }


/// <summary>
/// EmailPreviewText.
/// </summary>
public string EmailPreviewText { get; set; }


/// <summary>
/// EmailSubscriptionMessage.
/// </summary>
public string EmailSubscriptionMessage { get; set; }
}
}