add new sharing function

This commit is contained in:
Luke Pulverenti
2015-06-30 19:59:45 -04:00
parent 86571a6297
commit 04041105d8
16 changed files with 516 additions and 5 deletions

View 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; }
}
}