mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 14:54:11 +00:00
35 lines
No EOL
831 B
C#
35 lines
No EOL
831 B
C#
using Roadie.Library.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Roadie.Library.FilePlugins
|
|
{
|
|
[Serializable]
|
|
public class PluginResultInfo : OperationResult<bool>
|
|
{
|
|
public const string AdditionalDataKeyPluginResultInfo = "PluginResultInfo";
|
|
|
|
public string ArtistFolder { get; set; }
|
|
|
|
public Guid ArtistId { get; set; }
|
|
|
|
public IEnumerable<string> ArtistNames { get; set; }
|
|
|
|
public string Filename { get; set; }
|
|
|
|
public string ReleaseFolder { get; set; }
|
|
|
|
public Guid ReleaseId { get; set; }
|
|
|
|
public Statuses Status { get; set; }
|
|
|
|
public short? TrackNumber { get; set; }
|
|
|
|
public string TrackTitle { get; set; }
|
|
|
|
public PluginResultInfo()
|
|
{
|
|
Status = Statuses.Incomplete;
|
|
}
|
|
}
|
|
} |