mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-22 06:50:58 -04:00
16 lines
334 B
C#
16 lines
334 B
C#
using MediaBrowser.Model.Dlna;
|
|
|
|
namespace Jellyfin.Api.Models.VideoDtos
|
|
{
|
|
/// <summary>
|
|
/// Device profile dto.
|
|
/// </summary>
|
|
public class DeviceProfileDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets device profile.
|
|
/// </summary>
|
|
public DeviceProfile? DeviceProfile { get; set; }
|
|
}
|
|
}
|