19 lines
483 B
C#
19 lines
483 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 ShipmentVerificationFlagColumnName { get; init; } = "shipment_verification_flag";
|
|
}
|
|
|