Insight proper payment validation

This commit is contained in:
2025-11-16 01:06:33 +08:00
parent 5418489f77
commit b29f4fce4d
7 changed files with 347 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.ComponentModel.DataAnnotations;
namespace DysonNetwork.Shared.Models
{
public class SnUnpaidAccount
{
[Key]
public Guid AccountId { get; set; }
public DateTime MarkedAt { get; set; }
}
}