21 lines
571 B
C#
21 lines
571 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AVSCartonShipmentVerifier.Configuration;
|
|
|
|
public sealed class CartonVerificationOptions
|
|
{
|
|
public const string SectionName = "CartonVerification";
|
|
|
|
[Required]
|
|
public string TableName { get; init; } = "carton_verification_log";
|
|
|
|
[Required]
|
|
public string QrColumnName { get; init; } = "qr";
|
|
|
|
[Required]
|
|
public string MovedToWarehouseColumnName { get; init; } = "moved_to_warehouse";
|
|
|
|
[Required]
|
|
public string MovedToWarehouseAtColumnName { get; init; } = "moved_to_warehouse_at";
|
|
}
|