-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed import of MAME style DATs (#400)
- Loading branch information
1 parent
1672520
commit d7fca42
Showing
4 changed files
with
88 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using NuGet.Protocol.Core.Types; | ||
|
||
namespace gaseous_server.Models | ||
{ | ||
public class Signatures_Sources | ||
{ | ||
public int Id { get; set; } | ||
public string Name { get; set; } | ||
public string Description { get; set; } | ||
public string URL { get; set; } | ||
public string Category { get; set; } | ||
public string Version { get; set; } | ||
public string Author { get; set; } | ||
public string Email { get; set; } | ||
public string Homepage { get; set; } | ||
public gaseous_signature_parser.parser.SignatureParser SourceType { get; set; } | ||
public string MD5 { get; set; } | ||
public string SHA1 { get; set; } | ||
} | ||
} |