- 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
18 lines
488 B
C#
18 lines
488 B
C#
using LANCommander.SDK.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace LANCommander.SDK.Models
|
|
{
|
|
public class Media : BaseModel
|
|
{
|
|
public Guid FileId { get; set; }
|
|
public string Name { get; set; }
|
|
public MediaType Type { get; set; }
|
|
public string SourceUrl { get; set; }
|
|
public string MimeType { get; set; }
|
|
public string Crc32 { get; set; }
|
|
public int SortOrder { get; set; }
|
|
}
|
|
}
|