mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 18:02:23 +00:00
10 lines
144 B
C#
10 lines
144 B
C#
|
using System;
|
|||
|
|
|||
|
namespace FSO.Server.Protocol.Gluon.Packets
|
|||
|
{
|
|||
|
public interface IGluonCall
|
|||
|
{
|
|||
|
Guid CallId { get; set; }
|
|||
|
}
|
|||
|
}
|