You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Store/Entities/NotificationTemplates.cs

15 lines
452 B

using System.ComponentModel.DataAnnotations.Schema;
using Ombi.Helpers;
namespace Ombi.Store.Entities
{
[Table("NotificationTemplates")]
public class NotificationTemplates : Entity
{
public NotificationType NotificationType { get; set; }
public NotificationAgent Agent { get; set; }
public string Subject { get; set; }
public string Message { get; set; }
public bool Enabled { get; set; }
}
}