Artifact 021bdec762c34f581a47960c47914b16880ddc087fcc9995b7cbe81f93771cbd:
- File PointlessWaymarks.FeedReader/Feeds/MediaRSS/Medium.cs — part of check-in [fb382a33f7] at 2025-01-26 06:23:47 on branch main — Move FeedReader to the Tools Project (user: charl size: 560)
namespace PointlessWaymarks.FeedReader.Feeds.MediaRSS; /// <summary> /// Specifies the type of an object /// </summary> public enum Medium { /// <summary> /// Image /// </summary> Image, /// <summary> /// Audio /// </summary> Audio, /// <summary> /// Video /// </summary> Video, /// <summary> /// Document /// </summary> Document, /// <summary> /// Executable /// </summary> Executable, /// <summary> /// Type could not be determined /// </summary> Unknown }