16 lines
305 B
C#
16 lines
305 B
C#
namespace Shared.Models.AppConf
|
|
{
|
|
public class OverrideResponse
|
|
{
|
|
public bool firstEndpoint { get; set; }
|
|
|
|
public string pattern { get; set; }
|
|
|
|
public string action { get; set; }
|
|
|
|
public string type { get; set; }
|
|
|
|
public string val { get; set; }
|
|
}
|
|
}
|