17 lines
362 B
C#
17 lines
362 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SPC.Kiosk.Common;
|
|
namespace SPC.Kiosk.Start.Model
|
|
{
|
|
public class M_UriImage
|
|
{
|
|
public int Index { get; set; }
|
|
public UriTypes LinkType { get; set; }
|
|
public string LinkUri { get; set; }
|
|
public string Image { get; set; }
|
|
}
|
|
|
|
}
|