-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathClassDefinition.cs
41 lines (39 loc) · 924 Bytes
/
ClassDefinition.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* A very basic RTMPS client
*
* @author Gabriel Van Eyck
*/
/////////////////////////////////////////////////////////////////////////////////
//
//Ported to C# by Ryan A. LaSarre
//
/////////////////////////////////////////////////////////////////////////////////
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PVPNetConnect
{
/// <summary>
/// The class definition class.
/// </summary>
public class ClassDefinition
{
/// <summary>
/// The type
/// </summary>
public string type;
/// <summary>
/// The externalizable
/// </summary>
public bool externalizable = false;
/// <summary>
/// The dynamic
/// </summary>
public bool dynamic = false;
/// <summary>
/// The members
/// </summary>
public List<string> members = new List<string>();
}
}