mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
522 B
17 lines
522 B
using System; |
|
|
|
namespace ErsatzTV.Core.Domain |
|
{ |
|
public class TelevisionShowMetadata |
|
{ |
|
public int Id { get; set; } |
|
public int TelevisionShowId { get; set; } |
|
public TelevisionShow TelevisionShow { get; set; } |
|
public MetadataSource Source { get; set; } |
|
public DateTime? LastWriteTime { get; set; } |
|
public string Title { get; set; } |
|
public string SortTitle { get; set; } |
|
public int? Year { get; set; } |
|
public string Plot { get; set; } |
|
} |
|
}
|
|
|