Files
serein-flow/Library/Http/ControllerBase.cs

20 lines
419 B
C#
Raw Normal View History

2024-08-06 15:41:14 +08:00
namespace Serein.Library.Http
2024-08-05 10:11:58 +08:00
{
public class ControllerBase
{
2024-08-05 10:11:58 +08:00
public string Url { get; set; }
2024-08-05 10:11:58 +08:00
public string BobyData { get; set; }
2024-08-05 10:11:58 +08:00
public string GetLog(Exception ex)
{
return "Url : " + Url + Environment.NewLine +
"Ex : " + ex.Message + Environment.NewLine +
"Data : " + BobyData + Environment.NewLine;
}
}
}