Initial commit

This commit is contained in:
Chris Chen
2022-09-08 08:04:32 -07:00
commit 184db15773
4604 changed files with 503905 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Church.Net.Entity.Interface
{
public interface IEntity
{
string Id { get; set; }
}
public interface ICombinedKeyEntity
{
}
}
@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Church.Net.Entity.Interface
{
public interface ILog
{
int TrackNo { get; set; }
string DetailMessage { get; set; }
string Message { get; set; }
Guid Id { get; set; }
string Source { get; set; }
string StackTrace { get; set; }
DateTime Time { get; set; }
string Url { get; set; }
LogLevel Level { get; set; }
string UserId { get; set; }
}
public enum LogLevel
{
Info,
Warning,
Error
}
}