14 lines
331 B
C#
14 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.Error;
|
|
public class ErrorViewModel
|
|
{
|
|
public bool IsSuccedded { get; set; }
|
|
public string WorkshopFullName { get; set; }
|
|
public string Message { get; set; }
|
|
}
|