10 lines
217 B
C#
10 lines
217 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class JellyfinCollection
|
|
{
|
|
public int Id { get; set; }
|
|
public string ItemId { get; set; }
|
|
public string Etag { get; set; }
|
|
public string Name { get; set; }
|
|
}
|