Add FingerprintManager
This commit is contained in:
17
Akari.Prototype.Server/Options/AkariOptions.cs
Normal file
17
Akari.Prototype.Server/Options/AkariOptions.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user