function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
TzafrirbenTzafrirben 

Define public properties in Interface

From what I understand, I cannot define public properties in Interface like I can do in C#. Meaning this is not allowed:

 

global interface IClientIdentifier {
        String LoginEmail {get; set;};
}

 

The problem is that I want seamless to replace an existing C# Web service with Apex Web service with out updating all clients.

 

Any solution?