mirror of
https://github.com/Steffo99/better-tee.git
synced 2024-11-25 16:34:17 +00:00
22 lines
380 B
C#
22 lines
380 B
C#
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
|
|
};
|
|
}
|
|
}
|
|
}
|