Skip to content

Instantly share code, notes, and snippets.

@casper-rasmussen
Created September 7, 2016 14:50
Show Gist options
  • Save casper-rasmussen/129f27a0203fd834a260e9328461b70f to your computer and use it in GitHub Desktop.
Save casper-rasmussen/129f27a0203fd834a260e9328461b70f to your computer and use it in GitHub Desktop.
[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