ITypeId.cs 104 B

1234567
  1. namespace Bright.Serialization
  2. {
  3. public interface ITypeId
  4. {
  5. int GetTypeId();
  6. }
  7. }