Files
Backend-Api/Company.Domain/Error/ErrorViewModel.cs
2024-08-24 19:13:34 +03:30

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; }
}