12 lines
207 B
C#
12 lines
207 B
C#
namespace Shared.Models.AppConf
|
|
{
|
|
public class StorageConf
|
|
{
|
|
public bool enable { get; set; }
|
|
|
|
public long max_size { get; set; }
|
|
|
|
public bool brotli { get; set; }
|
|
}
|
|
}
|