11 lines
259 B
C#
11 lines
259 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class PlexMediaSourceLibrary
|
|
{
|
|
public int Id { get; set; }
|
|
public string Key { get; init; }
|
|
public string Name { get; init; }
|
|
public MediaType MediaType { get; init; }
|
|
}
|
|
}
|