Files
CSharp-MVC-Plugin-Views/src/DisplayTemplateExample.Web/Models/ImageTile.cs
Tommy Parnell d5844ce6e4 init commit
2015-09-13 15:22:47 -04:00

12 lines
223 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DisplayTemplateExample.Web.Models
{
public class ImageTile : ITile
{
public string src { get; set; }
}
}