ControllerConstants.cs 655 字节
Newer Older
R
Richasy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Copyright (c) Richasy. All rights reserved.

namespace Richasy.Bili.Models.App.Constants
{
    /// <summary>
    /// 控制器使用的常量.
    /// </summary>
    public static class ControllerConstants
    {
#pragma warning disable SA1600 // Elements should be documented
#pragma warning disable SA1401 // Fields should be private
        public static class Names
        {
            public const string PartitionIndex = "partitionIndex.json";
            public const string ServerFolder = "Server";
        }
#pragma warning disable SA1600 // Elements should be documented
#pragma warning disable SA1401 // Fields should be private
    }
}