mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-06 08:36:34 +00:00
9 lines
240 B
C#
9 lines
240 B
C#
using System;
|
|
|
|
namespace PodNoms.Api.Utils.RemoteParsers {
|
|
public class ParsedItemResult {
|
|
public string Id { get; set; }
|
|
public string VideoType { get; set; }
|
|
public DateTime? UploadDate { get; set; }
|
|
}
|
|
} |