isn/src/isnd/Entities/NugetSettings.cs

10 lines
225 B
C#
Raw Normal View History

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
{
public string ProtectionTitle {get; set;}
public string PackagesRootDir {get; set;}
2021-05-02 16:37:03 +01:00
public int MaxUserKeyCount {get; set;}
2021-05-02 15:22:46 +01:00
}
}