12 lines
322 B
C#
12 lines
322 B
C#
namespace Bibblan.Models
|
|
{
|
|
public class BibblanOptions
|
|
{
|
|
public const string Bibblan = "Bibblan";
|
|
|
|
public string CalibreDb { get; set; } = String.Empty;
|
|
public string CalibreRoot { get; set; } = String.Empty;
|
|
public string BibblanConnection { get; set; } = String.Empty;
|
|
}
|
|
}
|