Files
jellyfin-jellyfin-1/MediaBrowser.Model/Notifications/Notification.cs

24 lines
462 B
C#
Raw Normal View History

using System;
2013-07-06 17:23:32 -04:00
namespace MediaBrowser.Model.Notifications
{
public class Notification
{
2014-04-25 16:15:50 -04:00
public string Id { get; set; }
2013-07-06 17:23:32 -04:00
2014-04-25 16:15:50 -04:00
public string UserId { get; set; }
2013-07-06 17:23:32 -04:00
public DateTime Date { get; set; }
public bool IsRead { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Url { get; set; }
2014-04-26 23:42:05 -04:00
2013-07-06 17:23:32 -04:00
public NotificationLevel Level { get; set; }
2014-04-25 16:15:50 -04:00
}
2013-07-06 17:23:32 -04:00
}