Log DB
This commit is contained in:
@@ -52,6 +52,7 @@
|
||||
<Compile Include="Change.cs" />
|
||||
<Compile Include="File.cs" />
|
||||
<Compile Include="FileType.cs" />
|
||||
<Compile Include="Log.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Song.cs" />
|
||||
<Compile Include="SongType.cs" />
|
||||
|
||||
10
API/Models/Log.cs
Normal file
10
API/Models/Log.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
namespace API.Models {
|
||||
public class Log {
|
||||
public long ID { get; set; }
|
||||
public DateTime Date { get; set; }
|
||||
public string Method { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user