mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 06:18:08 +02:00
10 lines
218 B
C#
10 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; }
|
|||
|
}
|
|||
|
}
|