diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-12-04 09:54:53 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-12-04 09:54:53 +0100 |
| commit | 2ea053d4c436a79d77b205d3d74716244da91058 (patch) | |
| tree | d262004517f5e51f348347524c636f307cf63cb4 /src/Models/Database | |
| parent | 96435ba60e22bf0a82d777fc271cb6e1e2edc3f5 (diff) | |
| download | lettnytt-2ea053d4c436a79d77b205d3d74716244da91058.tar.xz lettnytt-2ea053d4c436a79d77b205d3d74716244da91058.zip | |
feat: Initial indexing of seasons and episode is working
Diffstat (limited to 'src/Models/Database')
| -rw-r--r-- | src/Models/Database/RadioEpisode.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Models/Database/RadioEpisode.cs b/src/Models/Database/RadioEpisode.cs index 508177b..1604c74 100644 --- a/src/Models/Database/RadioEpisode.cs +++ b/src/Models/Database/RadioEpisode.cs @@ -6,8 +6,8 @@ public class RadioEpisode public int SeriesId { get; set; } public int SeasonId { get; set; } public string NrkId { get; set; } - public string Title { get; set; } - public string Subtitle { get; set; } + public string Name { get; set; } + public string Description { get; set; } public string SourceUrl { get; set; } public string CanonicalUrl { get; set; } }
\ No newline at end of file |
