We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 299cf58 commit 770e06eCopy full SHA for 770e06e
MemPlus/Classes/LOG/ApplicationLog.cs
@@ -0,0 +1,21 @@
1
+using System;
2
+
3
+namespace MemPlus.Classes.LOG
4
+{
5
+ /// <inheritdoc />
6
+ /// <summary>
7
+ /// A class that represent a change in the application
8
+ /// </summary>
9
+ internal class ApplicationLog : Log
10
+ {
11
12
+ /// Initialize a new ApplicationLog object
13
14
+ internal ApplicationLog(string data)
15
16
+ LogType = LogType.Application;
17
+ Data = data;
18
+ Time = DateTime.Now;
19
+ }
20
21
+}
MemPlus/Classes/LOG/ILogMethods.cs
@@ -0,0 +1,11 @@
+ internal interface ILogMethods
+ void AddData(string data);
+ string GetData();
+ DateTime GetDate();
0 commit comments