isn/Entities/NugetSettings.cs

10 lines
232 B
C#
Raw Normal View History

2021-05-02 15:22:46 +01:00
namespace nuget_host.Entities
{
public class NugetSettings
{
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
}
}