17 lines
343 B
C#
17 lines
343 B
C#
using Nop.Web.Framework.Models;
|
|
|
|
namespace Nop.Web.Areas.Admin.Models.Common;
|
|
|
|
public partial record SystemWarningModel : BaseNopModel
|
|
{
|
|
public SystemWarningLevel Level { get; set; }
|
|
|
|
public string Text { get; set; }
|
|
|
|
public bool DontEncode { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Text;
|
|
}
|
|
} |