PageRenderTime 44ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/DotNetSlave.BusinessLogic/API/MetaWeblog/MWAMediaInfo.cs

#
C# | 18 lines | 9 code | 2 blank | 7 comment | 0 complexity | 68dbae5b7aac2463534c46ba9adea207 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. namespace BlogEngine.Core.API.MetaWeblog
  2. {
  3. /// <summary>
  4. /// MetaWeblog MediaInfo struct
  5. /// returned from NewMediaObject call
  6. /// </summary>
  7. internal struct MWAMediaInfo
  8. {
  9. #region Constants and Fields
  10. /// <summary>
  11. /// Url that points to Saved MediaObejct
  12. /// </summary>
  13. public string url;
  14. #endregion
  15. }
  16. }