10 lines
235 B
C#
10 lines
235 B
C#
namespace Material.Dialog
|
|
{
|
|
public class DialogButton
|
|
{
|
|
public string Result = "None";
|
|
public object Content = "Action";
|
|
public bool IsPositive = false;
|
|
public bool IsNegative = false;
|
|
}
|
|
} |