Created
September 7, 2016 14:50
-
-
Save casper-rasmussen/129f27a0203fd834a260e9328461b70f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ContentType( | |
DisplayName = "Flexible Image", | |
GUID = "[YOUR GUID HERE]")] | |
public class FlexibleImageFileMediaType : ImagePlaceholderMediaType | |
{ | |
[Display(Name = "Height")] | |
[Range(10, 1000)] | |
[Required] | |
public override int Height { get; set; } | |
[Display(Name = "Width")] | |
[Range(10, 1000)] | |
[Required] | |
public override int Width { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment