20 lines
489 B
C#
20 lines
489 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class sqfileModel
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public string type { get; set; }
|
|||
|
|
public int sqid { get; set; }
|
|||
|
|
public int sqrid { get; set; }
|
|||
|
|
public DateTime addtime { get; set; }
|
|||
|
|
public string title { get; set; }
|
|||
|
|
public string filepath { get; set; }
|
|||
|
|
public string downlog { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|