12 lines
205 B
C#
12 lines
205 B
C#
|
|
using IRaCIS.Core.Domain.BaseModel;
|
|
using IRaCIS.Core.Domain.Models;
|
|
|
|
namespace IRaCIS.Core.Domain;
|
|
|
|
|
|
public class AddUserLogTriggerCommand : DomainCommand
|
|
{
|
|
public UserLog UserLog { get; set; }
|
|
}
|