Possible Duplicate:
'POCO' definition
i have simple class called books. It need to be converted into POCO class. What changes. need to be done?
class **BOOKS**
{
private string authorName;
public string *getName*
{
return authorName;
}
public string *setName*
{
authorName=value;
}
}
non static class with 2 props.