mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
198 B
C#
12 lines
198 B
C#
using System;
|
|
|
|
namespace Remotely.Server.Models;
|
|
|
|
public class ModalButton
|
|
{
|
|
public string Class { get; set; }
|
|
public string Text { get; set; }
|
|
|
|
public Action OnClick { get; set; }
|
|
}
|