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 Expressions { get; set; } = null; public IEnumerable Changes { get; set; } = null; public bool? Enabled { get; set; } = null; public bool? TriggerOnUpdate { get; set; } = null; }