18 namespace erminas.SmartAPI.CMS.Project.ContentClasses.Elements
22 string DescriptionInCurrentDisplayLanguage {
get;
set; }
24 string EndTagForAutomaticProcessing {
get;
set; }
26 string StartTagForAutomaticProcessing {
get;
set; }
29 internal abstract class ExtendedContentClassContentElement : ContentClassContentElement,
30 IExtendedContentClassContentElement
32 protected ExtendedContentClassContentElement(
IContentClass contentClass, XmlElement xmlElement)
33 : base(contentClass, xmlElement)
37 [RedDot(
"eltrddescription")]
38 public string DescriptionInCurrentDisplayLanguage
40 get {
return GetAttributeValue<string>(); }
41 set { SetAttributeValue(value); }
44 [RedDot(
"eltendmark")]
45 public string EndTagForAutomaticProcessing
47 get {
return GetAttributeValue<string>(); }
48 set { SetAttributeValue(value); }
51 [RedDot(
"eltbeginmark")]
52 public string StartTagForAutomaticProcessing
54 get {
return GetAttributeValue<string>(); }
55 set { SetAttributeValue(value); }