DD.WellWorkover.Cloud/AsbCloudDb/Model/DefaultData/EntityNotificationCategory.cs

9 lines
279 B
C#
Raw Normal View History

namespace AsbCloudDb.Model.DefaultData;
public class EntityNotificationCategory : EntityFiller<NotificationCategory>
{
public override NotificationCategory[] GetData() => new NotificationCategory[]
{
new() { Id = 1, Name = "Системные уведомления" }
};
}