13 lines
363 B
C#
13 lines
363 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BlubbFish.Utils.IoT.Events {
|
|||
|
public class UserEvent : BackendEvent {
|
|||
|
public UserEvent() : base() { }
|
|||
|
public UserEvent(String message, Int64 UserId, DateTime date) : base(message, UserId, date, "User") { }
|
|||
|
}
|
|||
|
}
|