10 lines
228 B
C#
10 lines
228 B
C#
namespace ErsatzTV.Infrastructure.Plex.Models;
|
|
|
|
public class PlexPartResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public string Key { get; set; }
|
|
public int Duration { get; set; }
|
|
public string File { get; set; }
|
|
}
|