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

# · C# · 18 lines · 9 code · 2 blank · 7 comment · 0 complexity · 68dbae5b7aac2463534c46ba9adea207 MD5 · raw file

  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. }