mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-09 17:28:48 +01:00
add new sharing function
This commit is contained in:
16
MediaBrowser.Model/Social/SocialShareInfo.cs
Normal file
16
MediaBrowser.Model/Social/SocialShareInfo.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Social
|
||||
{
|
||||
public class SocialShareInfo
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Url { get; set; }
|
||||
public string ItemId { get; set; }
|
||||
public string UserId { get; set; }
|
||||
public DateTime ExpirationDate { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string ImageUrl { get; set; }
|
||||
public string Overview { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user