mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-30 06:39:27 +02:00
10 lines
237 B
C#
10 lines
237 B
C#
|
namespace MTWireGuard.Application.Models.Models.Responses
|
|||
|
{
|
|||
|
public class ToastMessage
|
|||
|
{
|
|||
|
public string Title { get; set; }
|
|||
|
public string Body { get; set; }
|
|||
|
public string Background { get; set; }
|
|||
|
}
|
|||
|
}
|