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