123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WpfTest1.SQLite
- {
- public class Expression
- {
- public int id { get; set; }
- public string expression_content { get; set; }
- public string expression_description { get; set; }
- public double range { get; set; }
- public int isRelative { get; set; }
- public double upBound { get; set; }
- public double downBound { get; set; }
- public int isCache { get; set; }
- public string position { get; set; }
- }
- }
|