jellyfin/MediaBrowser.Model/Notifications/Notification.cs

24 lines
462 B
C#
Raw Normal View History

using System;
2013-07-06 23:23:32 +02:00
namespace MediaBrowser.Model.Notifications
{
public class Notification
{
2014-04-25 22:15:50 +02:00
public string Id { get; set; }
2013-07-06 23:23:32 +02:00
2014-04-25 22:15:50 +02:00
public string UserId { get; set; }
2013-07-06 23:23:32 +02: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-27 05:42:05 +02:00
2013-07-06 23:23:32 +02:00
public NotificationLevel Level { get; set; }
2014-04-25 22:15:50 +02:00
}
2013-07-06 23:23:32 +02:00
}