12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
-
-
-
- public class Competence
- {
- int id;
-
-
-
- public int Id
- {
- get { return id; }
- set { id = value; }
- }
- int uid;
-
-
-
- public int Uid
- {
- get { return uid; }
- set { uid = value; }
- }
- int sid;
-
-
-
- public int Sid
- {
- get { return sid; }
- set { sid = value; }
- }
- int sTable;
-
-
-
- public int STable
- {
- get { return sTable; }
- set { sTable = value; }
- }
- }
- }
|