DD.WellWorkover.Cloud/AsbCloudDb/Model/NotificationCategory.cs
Olga Nemt 3cf880832c 1. Убрана категория уведомления с ключом 20000
2. Категория системных уведомлений спрятана в константу
2023-12-19 12:28:41 +05:00

26 lines
782 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace AsbCloudDb.Model;
[Table("t_notification_category"), Comment("Категории уведомлений")]
public class NotificationCategory : IId
{
#region constants category notifications ids
/// <summary>
/// СИСТЕМНЫЕ УВЕДОМЛЕНИЯ
/// </summary>
public const int IdSystemNotificationCategory = 1;
[Key]
[Column("id")]
public int Id { get; set; }
[Column("name")]
public string Name { get; set; } = null!;
[InverseProperty(nameof(Notification.NotificationCategory))]
public virtual ICollection<Notification> Notifications { get; set; } = null!;
}