Initial Commit ...

This commit is contained in:
2024-01-25 04:48:33 +03:30
commit 9eabf45f06
15 changed files with 1299 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
namespace xEventService.Base {
public abstract class XBaseEvent {
public string Type { get; protected set; }
public DateTime Timestamp { get; protected set; }
protected XBaseEvent () {
//
Type = GetType ().Name;
Timestamp = DateTime.UtcNow;
}
}
}