- Added sort order to media for screenshots and videos - Added new "Preview" pane to game editor. Simulates the game details view in the launcher and allows for in-place media upload / grabbing - Added abstractions for media grabbing - Added subtitle to media picker dialog to indicate which services provide which assets - Added preview for videos - Made media searching faster overall
13 lines
284 B
C#
13 lines
284 B
C#
namespace LANCommander.Server.Services.Models
|
|
{
|
|
public class MediaGrabberDownload : IDisposable
|
|
{
|
|
public Stream Stream { get; set; }
|
|
public string MimeType { get; set; }
|
|
|
|
public void Dispose()
|
|
{
|
|
Stream?.Dispose();
|
|
}
|
|
}
|
|
}
|