mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-28 13:58:09 +02:00
9 lines
218 B
C#
9 lines
218 B
C#
namespace MTWireGuard.Models.Responses
|
|
{
|
|
public class ToastMessage
|
|
{
|
|
public string Title { get; set; }
|
|
public string Body { get; set; }
|
|
public string Background { get; set; }
|
|
}
|
|
}
|