1234567891011121314151617181920212223242526 |
- namespace Central.Control.Domain
- {
- using System;
- using System.Collections.Generic;
-
- public partial class COM_INDEX
- {
- public string ID { get; set; }
- public string TITLE { get; set; }
- public string ICON { get; set; }
- public string COLOR { get; set; }
- public string BACKGROUNDCOLOR { get; set; }
- public int SHOWORDER { get; set; }
- public string PATH { get; set; }
- public int SHOWTYPE { get; set; }
- }
- }
|