mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
14 lines
No EOL
396 B
C#
14 lines
No EOL
396 B
C#
using System;
|
|
|
|
namespace Roadie.Library.SearchEngines.MetaData
|
|
{
|
|
[Serializable]
|
|
public class LabelSearchResult : SearchResultBase
|
|
{
|
|
public DateTime? EndDate { get; set; }
|
|
public string LabelImageUrl { get; set; }
|
|
public string LabelName { get; set; }
|
|
public string LabelSortName { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
}
|
|
} |