@@ -42,7 +42,7 @@ private static void Map(ILanguage source, LanguageItemResponseModel target, Mapp
42
42
target . IsoCode = source . IsoCode ;
43
43
}
44
44
45
- // Umbraco.Code.MapAll
45
+ // Umbraco.Code.MapAll -Signs
46
46
private static void Map ( IDataType source , DataTypeItemResponseModel target , MapperContext context )
47
47
{
48
48
target . Name = source . Name ?? string . Empty ;
@@ -52,14 +52,14 @@ private static void Map(IDataType source, DataTypeItemResponseModel target, Mapp
52
52
target . IsDeletable = source . IsDeletableDataType ( ) ;
53
53
}
54
54
55
- // Umbraco.Code.MapAll
55
+ // Umbraco.Code.MapAll -Signs
56
56
private static void Map ( IDictionaryItem source , DictionaryItemItemResponseModel target , MapperContext context )
57
57
{
58
58
target . Name = source . ItemKey ;
59
59
target . Id = source . Key ;
60
60
}
61
61
62
- // Umbraco.Code.MapAll
62
+ // Umbraco.Code.MapAll -Signs
63
63
private static void Map ( IContentType source , DocumentTypeItemResponseModel target , MapperContext context )
64
64
{
65
65
target . Name = source . Name ?? string . Empty ;
@@ -69,46 +69,46 @@ private static void Map(IContentType source, DocumentTypeItemResponseModel targe
69
69
target . Description = source . Description ;
70
70
}
71
71
72
- // Umbraco.Code.MapAll
72
+ // Umbraco.Code.MapAll -Signs
73
73
private static void Map ( IMediaType source , MediaTypeItemResponseModel target , MapperContext context )
74
74
{
75
75
target . Name = source . Name ?? string . Empty ;
76
76
target . Id = source . Key ;
77
77
target . Icon = source . Icon ;
78
78
}
79
79
80
- // Umbraco.Code.MapAll
80
+ // Umbraco.Code.MapAll -Signs
81
81
private static void Map ( IEntitySlim source , MemberGroupItemResponseModel target , MapperContext context )
82
82
{
83
83
target . Name = source . Name ?? string . Empty ;
84
84
target . Id = source . Key ;
85
85
}
86
86
87
- // Umbraco.Code.MapAll
87
+ // Umbraco.Code.MapAll -Signs
88
88
private static void Map ( ITemplate source , TemplateItemResponseModel target , MapperContext context )
89
89
{
90
90
target . Name = source . Name ?? string . Empty ;
91
91
target . Id = source . Key ;
92
92
target . Alias = source . Alias ;
93
93
}
94
94
95
- // Umbraco.Code.MapAll
95
+ // Umbraco.Code.MapAll -Signs
96
96
private static void Map ( IMemberType source , MemberTypeItemResponseModel target , MapperContext context )
97
97
{
98
98
target . Name = source . Name ?? string . Empty ;
99
99
target . Id = source . Key ;
100
100
target . Icon = source . Icon ;
101
101
}
102
102
103
- // Umbraco.Code.MapAll
103
+ // Umbraco.Code.MapAll -Signs
104
104
private static void Map ( IRelationType source , RelationTypeItemResponseModel target , MapperContext context )
105
105
{
106
106
target . Id = source . Key ;
107
107
target . Name = source . Name ?? string . Empty ;
108
108
target . IsDeletable = source . IsDeletableRelationType ( ) ;
109
109
}
110
110
111
- // Umbraco.Code.MapAll
111
+ // Umbraco.Code.MapAll -Signs
112
112
private static void Map ( IUserGroup source , UserGroupItemResponseModel target , MapperContext context )
113
113
{
114
114
target . Id = source . Key ;
@@ -117,7 +117,7 @@ private static void Map(IUserGroup source, UserGroupItemResponseModel target, Ma
117
117
target . Alias = source . Alias ;
118
118
}
119
119
120
- // Umbraco.Code.MapAll
120
+ // Umbraco.Code.MapAll -Signs
121
121
private static void Map ( IWebhook source , WebhookItemResponseModel target , MapperContext context )
122
122
{
123
123
target . Id = source . Key ;
0 commit comments