14 lines
263 B
C#
14 lines
263 B
C#
namespace Shared.Models.ServerProxy
|
|
{
|
|
public class ServerproxyBufferingConf
|
|
{
|
|
public bool enable { get; set; }
|
|
|
|
public string pattern { get; set; }
|
|
|
|
public int rent { get; set; }
|
|
|
|
public int length { get; set; }
|
|
}
|
|
}
|