rc-migration-tests/ef-migration/src/Strata.Code.DataAccess/Models/AdjustmentChunkingConfiguration.cs
2025-02-05 20:32:43 -05:00

27 lines
723 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Strata.Code.DataAccess.Models;
[Table("AdjustmentChunkingConfiguration", Schema = "fp")]
public partial class AdjustmentChunkingConfiguration
{
[Key]
[Column("SectionID")]
public int SectionId { get; set; }
[StringLength(100)]
public string Description { get; set; } = null!;
public bool IsChunkingEnabled { get; set; }
public int MaxAdjustmentsPerChunk { get; set; }
public int MaxImportAdjustmentsPerChunk { get; set; }
public int MaxAdjustmentRecordCountForChunking { get; set; }
}