15 lines
236 B
C#
15 lines
236 B
C#
using System;
|
|
|
|
namespace Client2020.BrowserTools.Models.Errors
|
|
{
|
|
public class ErrorContainer
|
|
{
|
|
public String error;
|
|
|
|
public ErrorContainer(String Err)
|
|
{
|
|
this.error = Err;
|
|
}
|
|
}
|
|
}
|