999f8a80f9
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
798 B
C#
22 lines
798 B
C#
using ROLAC.API.Entities.Base;
|
|
|
|
namespace ROLAC.API.Entities;
|
|
|
|
public class OfferingSession : AuditableEntity
|
|
{
|
|
public int Id { get; set; }
|
|
public DateOnly SessionDate { get; set; }
|
|
public string Status { get; set; } = "Draft"; // Draft | Submitted | Reconciled
|
|
public decimal CashTotal { get; set; }
|
|
public decimal CheckTotal { get; set; }
|
|
public decimal SystemTotal { get; set; }
|
|
public decimal Difference { get; set; }
|
|
public string? Notes { get; set; }
|
|
public DateTimeOffset? SubmittedAt { get; set; }
|
|
public string? SubmittedBy { get; set; }
|
|
public DateTimeOffset? ReconciledAt { get; set; }
|
|
public string? ReconciledBy { get; set; }
|
|
|
|
public List<Giving> Givings { get; set; } = [];
|
|
}
|