Skip to content

Instantly share code, notes, and snippets.

@jonihietala
Created October 22, 2017 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonihietala/7ed21e8a151210eb9b2db2c56437c025 to your computer and use it in GitHub Desktop.
Save jonihietala/7ed21e8a151210eb9b2db2c56437c025 to your computer and use it in GitHub Desktop.
using EPiServer;
using EPiServer.Core;
using EPiServer.Shell;
namespace AlloyDemoKit.Business.Rendering
{
public interface ICarouselContent : IContentData
{
Url Image { get; set; }
string ImageDescription { get; set; }
string Heading { get; set; }
string SubHeading { get; set; }
string ButtonText { get; set; }
Url ButtonLink { get; set; }
bool Selected { get; set; }
}
[UIDescriptorRegistration]
public class CarouselContentDescriptor : UIDescriptor<ICarouselContent> { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment