Code
·
8 lines
·
296 bytes
1
2
3
4
5
6
7
8namespace JsonContextDb.JsonContext;
internal class MetaData
{
public int Id { get; set; } // Required for JsonContext
public string EntityType { get; set; } = string.Empty; // Name of the entity type (e.g., "Customer")
public int NextId { get; set; } // Next available ID for this type
}