12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class MSsavedforeignkeys
- {
-
-
-
- public string program_name { get; set; }
-
-
-
- public string constraint_name { get; set; }
-
-
-
- public string parent_schema { get; set; }
-
-
-
- public string parent_name { get; set; }
-
-
-
- public string referenced_object_schema { get; set; }
-
-
-
- public string referenced_object_name { get; set; }
-
-
-
- public bool is_disabled { get; set; }
-
-
-
- public bool is_not_for_replication { get; set; }
-
-
-
- public bool is_not_trusted { get; set; }
-
-
-
- public byte delete_referential_action { get; set; }
-
-
-
- public byte update_referential_action { get; set; }
-
-
-
- public System.DateTime timestamp { get; set; }
- }
- }
|