|
namespace Gravitons.UI.Modal
|
|
{
|
|
public class GenericModalContent : ModalContentBase
|
|
{
|
|
/// <summary>
|
|
/// Title text of the modal
|
|
/// </summary>
|
|
public string Title { get; set; }
|
|
/// <summary>
|
|
/// Body text of the modal
|
|
/// </summary>
|
|
public string Body { get; set; }
|
|
}
|
|
} |