techgarage-ir.MTWireGuard/Application/Models/Responses/ToastMessage.cs

10 lines
237 B
C#
Raw Normal View History

2024-01-25 20:36:44 +03:30
namespace MTWireGuard.Application.Models.Models.Responses
{
public class ToastMessage
{
public string Title { get; set; }
public string Body { get; set; }
public string Background { get; set; }
}
}