forked from ddrilling/AsbCloudServer
9 lines
249 B
C#
9 lines
249 B
C#
|
namespace AsbCloudDb.Model.DefaultData;
|
||
|
|
||
|
public class EntityNotificationTransport : EntityFiller<NotificationTransport>
|
||
|
{
|
||
|
public override NotificationTransport[] GetData() => new NotificationTransport[]
|
||
|
{
|
||
|
new() { Id = 1, Name = "SignalR" }
|
||
|
};
|
||
|
}
|