spc-kiosk-pb/Kiosk/Start/SPC.Kiosk.Start.Model/m_InitImage.cs

17 lines
362 B
C#
Raw Normal View History

2019-06-16 05:12:09 +00:00
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; }
}
}