Files
serein-flow/Library/Web/ControllerBase.cs
fengjiayi 75333e621f GIT练习
2024-08-05 10:11:58 +08:00

16 lines
406 B
C#

namespace Serein.Web
{
public class ControllerBase
{
public string Url { get; set; }
public string BobyData { get; set; }
public string GetLog(Exception ex)
{
return "Url : " + Url + Environment.NewLine +
"Ex : " + ex.Message + Environment.NewLine +
"Data : " + BobyData + Environment.NewLine;
}
}
}