mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-23 01:40:26 +00:00
28 lines
1.0 KiB
C#
28 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace PodNoms.Api.Models.ViewModels.RssViewModels {
|
|
public class PodcastEnclosureViewModel {
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public string Author { get; set; }
|
|
public string Link { get; set; }
|
|
public string Image { get; set; }
|
|
public string PublishDate { get; set; }
|
|
public string Language { get; set; }
|
|
public string Copyright { get; set; }
|
|
public string Owner { get; set; }
|
|
public string OwnerEmail { get; set; }
|
|
public string ShowUrl { get; set; }
|
|
public List<PodcastEnclosureItemViewModel> Items { get; set; }
|
|
}
|
|
public class PodcastEnclosureItemViewModel {
|
|
public string Uid { get; set; }
|
|
public string Title { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
public string Author { get; set; }
|
|
public string UpdateDate { get; set; }
|
|
public string AudioUrl { get; set; }
|
|
public long AudioFileSize { get; set; }
|
|
}
|
|
} |