I have class.
[DataContract]
public class Person{
[DataMember]
public string Name{get; set;};
[DataMember]
public string Lastname{get; set;};
}
I need to create UML class diagram in Enterprise Architect.
I create class and add Name and Lastname property but i don't know how to put [DataContract] and [DataMember]. Can anyone know how to do it or is it posible to do it?