This library is a plugin for Cofoundry. For more information on getting started with Cofoundry check out the Cofoundry repository.
This plugin adds a single data attribute [Vimeo]
that can be used to markup a property of type VimeoVideo
. This will show as a Vimeo Video picker in the admin UI.
You can find a full example project named VimeoExample in the solution in this repository, which contains a VimeoVideo page block type.
Example Data Model
using Cofoundry.Domain;
using Cofoundry.Plugins.Vimeo.Domain;
using System.ComponentModel.DataAnnotations;
public class VimeoVideoDataModel : IPageBlockTypeDataModel, IPageBlockTypeDisplayModel
{
[Required]
[Vimeo]
public VimeoVideo Video { get; set; }
}