1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2024-11-25 16:34:17 +00:00
better-tee/Assets/Code/Common/ConnectedViewer.cs

23 lines
380 B
C#
Raw Normal View History

2019-09-19 10:25:29 +00:00
using System;
[Serializable]
public class ConnectedViewerData {
public string name;
public int id;
}
public class ConnectedViewer {
public string name;
public int id;
public ConnectedViewerData Data {
get {
return new ConnectedViewerData {
name = this.name,
id = this.id
};
}
}
}