roadie/Roadie.Api.Library/Configuration/FilePlugins.cs

10 lines
186 B
C#
Raw Normal View History

2018-11-04 20:33:37 +00:00
using System;
namespace Roadie.Library.Configuration
{
[Serializable]
2019-06-02 04:27:17 +00:00
public class FilePlugins : IFilePlugins
2018-11-04 20:33:37 +00:00
{
public int MinWeightToDelete { get; set; }
}
}