This commit is contained in:
2019-03-17 21:44:47 +01:00
parent 4f06467469
commit 4347f4859b
8 changed files with 206 additions and 2 deletions

View File

@@ -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
View 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; }
}
}