26 lines
450 B
C#
26 lines
450 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
|
|||
|
|
namespace Face.Web.Areas.App.Models
|
|||
|
|
{
|
|||
|
|
public class UiImg
|
|||
|
|
{
|
|||
|
|
public string name;
|
|||
|
|
public string image;
|
|||
|
|
public int x;
|
|||
|
|
public int y;
|
|||
|
|
public int w;
|
|||
|
|
public int h;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
public class Uiinfo
|
|||
|
|
{
|
|||
|
|
public string Roomname;
|
|||
|
|
public string imageBj;
|
|||
|
|
public string imagelogo;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|