2b9f74a1b2
* Added autocreate database if not exists
16 lines
323 B
C#
16 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model
|
|
{
|
|
public class ErrorMessageModel
|
|
{
|
|
public string Title { get; set; }
|
|
public string Message { get; set; }
|
|
public int errorLevel { get; set; }
|
|
}
|
|
}
|