2021-08-15 19:09:01 +01:00
|
|
|
namespace isnd.Entities
|
2021-05-02 15:22:46 +01:00
|
|
|
{
|
2021-08-15 01:50:07 +01:00
|
|
|
public class IsndSettings
|
2021-05-02 15:22:46 +01:00
|
|
|
{
|
2021-08-23 03:21:08 +01:00
|
|
|
public string ExternalUrl { get; set; }
|
|
|
|
|
|
2021-05-02 15:22:46 +01:00
|
|
|
public string ProtectionTitle {get; set;}
|
|
|
|
|
public string PackagesRootDir {get; set;}
|
2021-08-23 03:21:08 +01:00
|
|
|
public string CatalogDir {get; set;}
|
2021-05-02 16:37:03 +01:00
|
|
|
public int MaxUserKeyCount {get; set;}
|
2021-05-02 15:22:46 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|