14 lines
262 B
C#
14 lines
262 B
C#
namespace YLErp.Web.Models
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class ShowErrorModel
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public string ErrorMsg { get; set; }
|
|
|
|
public bool AutoCloseWindow { get; set; }
|
|
}
|
|
} |