This commit is contained in:
mmrbnjd
2024-05-07 13:55:11 +03:30
parent 85d9dfe849
commit 91fcef70d7
7 changed files with 153 additions and 29 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public enum ComponentAction
{
add,
update,
delete
}
public enum ComponentStatus
{
success,
fild
}
public class ActionInResultComponent
{
public ComponentAction Action { get; set; }
public ComponentStatus Status { get; set; }
}
}