24 lines
462 B
C#
24 lines
462 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace zero.Core.Plugins
|
||
|
|
{
|
||
|
|
public class ZeroPluginOptions : IZeroPluginOptions
|
||
|
|
{
|
||
|
|
public string Name { get; set; }
|
||
|
|
|
||
|
|
public string Description { get; set; }
|
||
|
|
|
||
|
|
public List<string> LocalizationPaths { get; private set; } = new List<string>();
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public interface IZeroPluginOptions
|
||
|
|
{
|
||
|
|
string Name { get; set; }
|
||
|
|
|
||
|
|
string Description { get; set; }
|
||
|
|
|
||
|
|
List<string> LocalizationPaths { get; }
|
||
|
|
}
|
||
|
|
}
|