1
0
mirror of synced 2024-12-18 09:15:54 +01:00
GC-local-server-rewrite/Domain/Entities/CardBdatum.cs

11 lines
185 B
C#
Raw Normal View History

namespace Domain.Entities;
public partial class CardBdatum
{
public long CardId { get; set; }
public string? Bdata { get; set; }
public long BdataSize { get; set; }
}