12 lines
223 B
C#
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; }
|
|
}
|
|
} |