forked from ddrilling/AsbCloudServer
9 lines
327 B
C#
9 lines
327 B
C#
namespace AsbCloudDb.Model.DefaultData;
|
|
|
|
public class EntityNotificationCategory : EntityFiller<NotificationCategory>
|
|
{
|
|
public override NotificationCategory[] GetData() => new NotificationCategory[]
|
|
{
|
|
new() { Id = NotificationCategory.IdSystemNotificationCategory, Name = "Системные уведомления" }
|
|
};
|
|
} |