mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-25 10:47:51 +00:00
Merge Repos
This commit is contained in:
21
server/Models/ViewModels/Resources/EntryViewModel.cs
Normal file
21
server/Models/ViewModels/Resources/EntryViewModel.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace PodNoms.Api.Models.ViewModels {
|
||||
public class PodcastEntryViewModel {
|
||||
public int Id { get; set; }
|
||||
public int PodcastId { get; set; }
|
||||
public string Uid { get; set; }
|
||||
public DateTime CreateDate { get; set; }
|
||||
public string Author { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string SourceUrl { get; set; }
|
||||
public string AudioUrl { get; set; }
|
||||
public float AudioLength { get; set; }
|
||||
public long AudioFileSize { get; set; }
|
||||
public string ImageUrl { get; set; }
|
||||
public string ProcessingStatus { get; set; }
|
||||
public bool Processed { get; set; }
|
||||
public string ProcessingPayload { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user