[RealtimeModel] attribute and then defining the integer property with the attribute. Here's a simple example:1 in the attribute is the property ID, which should be unique within this model. The true indicates that this property should be synced reliably.[RealtimeProperty]MyModel_myIntPropertyRealtimeProperty[RealtimeModel]
public partial class MyModel {
[RealtimeProperty(1, true)] private int _myIntProperty;
}