1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2024-10-16 14:07:26 +00:00

Boh? Sono cambiate cose

This commit is contained in:
Steffo 2019-09-19 12:25:29 +02:00
parent 4da71a5717
commit 8bd953ddfa

View file

@ -0,0 +1,22 @@
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
};
}
}
}