🐛 Fix the message pack serializer

This commit is contained in:
2025-12-03 00:38:12 +08:00
parent b364edc74b
commit 74c8f3490d
9 changed files with 41 additions and 26 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; }
}
}