Add FingerprintManager

This commit is contained in:
2021-06-03 20:19:42 +02:00
parent 1c6b545e6b
commit adcde19346
14 changed files with 240 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace Akari.Prototype.Server.Options
{
public class AkariOptions
{
public const string FilePath = "akari.json";
public const string SectionPath = "Akari";
[Required]
public string DataPath { get; set; }
}
}