Interface IRealmObject
Base interface for any object that can be persisted in a Realm.
Inherited Members
Namespace: Realms
Assembly: Realm.dll
Syntax
public interface IRealmObject : IRealmObjectBase
Remarks
This interface will be implemented automatically by the Realm source generator as long as your
model class is declared as partial
.
Examples
public partial class Person : IRealmObject
{
public string Name { get; set; } = "";
}