26 lines
465 B
C#
26 lines
465 B
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|