This commit is contained in:
CortexCore
2025-02-24 23:02:43 +08:00
parent 41715e4413
commit 8261a458e2
105 changed files with 2934 additions and 696 deletions

View File

@@ -2,13 +2,11 @@ using System.Dynamic;
namespace BITKit.Entities
{
public interface IdComponent
public class IdComponent
{
ulong Id { get; set; }
}
public interface IdComponent_String
{
string DbId { get; }
public int Id { get; set; }
public string Name { get; set; }
public string Group { get; set; }
}
}