1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class MSsnapshotdeliveryprogress
- {
-
-
-
- public string session_token { get; set; }
-
-
-
- public int progress_token_hash { get; set; }
-
-
-
- public string progress_token { get; set; }
-
-
-
- public Nullable<System.DateTime> progress_timestamp { get; set; }
- }
- }
|