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