19 lines
330 B
C#
19 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SamplePre.Models.Models
|
|
{
|
|
public class sys_dict_class
|
|
{
|
|
|
|
public int id { get; set; }
|
|
public string dict_type { get; set; }
|
|
public string remark { get; set; }
|
|
|
|
|
|
}
|
|
}
|