1234567891011121314151617181920212223242526272829303132333435363738 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// MSsnapshotdeliveryprogress
- /// </summary>
- public partial class MSsnapshotdeliveryprogress
- {
- /// <summary>
- /// session_token
- /// </summary>
- public string session_token { get; set; }
- /// <summary>
- /// progress_token_hash
- /// </summary>
- public int progress_token_hash { get; set; }
- /// <summary>
- /// progress_token
- /// </summary>
- public string progress_token { get; set; }
- /// <summary>
- /// progress_timestamp
- /// </summary>
- public Nullable<System.DateTime> progress_timestamp { get; set; }
- }
- }
|