14 lines
344 B
C#
14 lines
344 B
C#
|
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; }
|
||
|
}
|
||
|
}
|