namespace Books.Api.AiBookkeeper;
///
/// Chart of accounts data for AI Bookkeeper processing.
/// Contains the list of expense accounts that AI can suggest for document booking.
///
public class ChartOfAccountsDto
{
public required string CompanyId { get; init; }
public required IReadOnlyList Accounts { get; init; }
}
///
/// Account information for AI Bookkeeper.
///
public class AiAccountDto
{
public required string AccountNumber { get; init; }
public required string Name { get; init; }
public required string AccountType { get; init; }
public string? VatCodeId { get; init; }
public string? StandardAccountNumber { get; init; }
}