1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class MSsavedforeignkeycolumns
- {
-
-
-
- public string program_name { get; set; }
-
-
-
- public string constraint_name { get; set; }
-
-
-
- public string parent_schema { get; set; }
-
-
-
- public int constraint_column_id { get; set; }
-
-
-
- public string referencing_column_name { get; set; }
-
-
-
- public string referenced_column_name { get; set; }
-
-
-
- public System.DateTime timestamp { get; set; }
- }
- }
|