IRPCSession.cs 211 B

123456789101112
  1. using System;
  2. using InABox.Core;
  3. namespace InABox.Rpc
  4. {
  5. public interface IRpcSession
  6. {
  7. Guid ID { get; set; }
  8. Platform Platform { get; set; }
  9. string? Version { get; set; }
  10. }
  11. }