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