in an attempt to not re-invent the wheel, im looking for any existing abstractions of the concept of Message, so that specific implementations such as email, sms or chat classes could be interchangeably bound to this common interface?
Own Quick Untested Mock-up
interface IMessage<T, U, V>
{
Guid Id { get; set; }
T Sender { get; set; }
T Target { get; set; }
U Subject { get; set; }
V Body { get; set; }
}
i.e. what are the lowest common denominator characteristics of most current and future message types?
i did find some random interfaces, but they mixed specific Send methods and other Messager responsibilities into the contract.
i was thinking maybe Outlook or Exchange is using one, but could not find it.