...
Code Block | ||
---|---|---|
| ||
public interface IFotowareMedia : IContentData { string Name { get; set; } /// <summary> /// Fotoware alternative text /// </summary> string FotowareAltText { get; set; } /// <summary> /// Fotoware description /// </summary> string FotowareDescription { get; set; } /// <summary> /// Fotoware CDN url /// </summary> string FotowareUrl { get; set; } /// <summary> /// Fotoware Preview CDN url /// </summary> string FotowarePreviewUrl { get; set; } /// <summary> /// Fotoware JSON metadata /// </summary> string FotowareJson { get; set; } /// <summary> /// Fotoware modified date /// </summary> DateTime? FotowareModifiedDate { get; set; } } |
Example implementation of IFotowareMedia
...