If I have in my Parent class property ConditionStatus of datatype ConditionEnum like
interface IArticle
{
ConditionEnum ConditionStatus {get; set;}
}
enum is represent like ConditionEnum {New, Used};
I'm wonder how can I change this ConditionEnum in child class so that ArticleA which implements IArticle can have enum like ConditionEnum {Red, Blue, Yellow};
and ArticleB which also implements IArticle have enum like ConditionEnum {Point, Comma, Slash}; I think you've got an idea.
How would you do it?