17 lines
350 B
C#
17 lines
350 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class xcximgModel
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public string path { get; set; }
|
|||
|
|
public string url { get; set; }
|
|||
|
|
public int sort { get; set; }
|
|||
|
|
public byte zt { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|