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