2022-01-26 10:32:16 -06:00
|
|
|
|
namespace SharedLibraryCore.Dtos.Meta.Responses
|
2020-08-17 21:21:11 -05:00
|
|
|
|
{
|
|
|
|
|
public class InformationResponse : BaseMetaResponse
|
|
|
|
|
{
|
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
public string ToolTipText { get; set; }
|
|
|
|
|
}
|
2022-01-26 10:32:16 -06:00
|
|
|
|
}
|