18 lines
402 B
C#
18 lines
402 B
C#
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; }
|
|
}
|
|
}
|