16 lines
635 B
C#
16 lines
635 B
C#
namespace AAIntegration.SimmonsBank.API.Models.Autoclass;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Runtime.InteropServices;
|
|
using AAIntegration.SimmonsBank.API.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
public class AutoclassRuleUpdateRequest
|
|
{
|
|
public string Name { get; set; } = null;
|
|
public int? AccountId { get; set; } = null;
|
|
public IEnumerable<AutoclassExpressionCreateRequest> Expressions { get; set; } = null;
|
|
public IEnumerable<AutoclassChangeCreateRequest> Changes { get; set; } = null;
|
|
public bool? Enabled { get; set; } = null;
|
|
public bool? TriggerOnUpdate { get; set; } = null;
|
|
} |