4 using System.Collections.Generic;
8 namespace SiliconStudio.TextureConverter.Requests
13 internal class ExportRequest : IRequest
15 public override RequestType
Type {
get {
return RequestType.Export; } }
21 public String FilePath {
get;
private set; }
27 public int MinimumMipMapSize {
get;
private set; }
35 public ExportRequest(String filePath,
int minimumMipMapSize)
37 this.FilePath = filePath;
38 this.MinimumMipMapSize = minimumMipMapSize;
The type of the serialized type will be passed as a generic arguments of the serializer. Example: serializer of A becomes instantiated as Serializer{A}.