File tree 2 files changed +26
-0
lines changed
commercetools.Sdk/commercetools.Sdk.Domain/Messages/Stores
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ using System . Collections . Generic ;
2
+ using commercetools . Sdk . Domain . Channels ;
3
+ using commercetools . Sdk . Domain . Common ;
4
+ using commercetools . Sdk . Domain . Stores ;
5
+
6
+ namespace commercetools . Sdk . Domain . Messages . Stores
7
+ {
8
+ [ TypeMarker ( "StoreCreated" ) ]
9
+ public class StoreCreatedMessage : Message < Store >
10
+ {
11
+ public LocalizedString Name { get ; set ; }
12
+ public List < string > Languages { get ; set ; }
13
+ public List < IReference < Channel > > DistributionChannels { get ; set ; }
14
+ public List < IReference < Channel > > SupplyChannels { get ; set ; }
15
+ public CustomFields Custom { get ; set ; }
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ using commercetools . Sdk . Domain . Stores ;
2
+
3
+ namespace commercetools . Sdk . Domain . Messages . Stores
4
+ {
5
+ [ TypeMarker ( "StoreDeleted" ) ]
6
+ public class StoreDeletedMessage : Message < Store >
7
+ {
8
+ }
9
+ }
You can’t perform that action at this time.
0 commit comments