roadie/RoadieLibrary/SearchEngines/MetaData/LabelSearchResult.cs
Steven Hildreth 341267cacc WIP
2018-11-03 16:21:36 -05:00

14 lines
No EOL
396 B
C#

using System;
namespace Roadie.Library.SearchEngines.MetaData
{
[Serializable]
public class LabelSearchResult : SearchResultBase
{
public string LabelName { get; set; }
public string LabelSortName { get; set; }
public DateTime? EndDate { get; set; }
public DateTime? StartDate { get; set; }
public string LabelImageUrl { get; set; }
}
}