2023-08-31 12:20:06 +02:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
2024-04-09 12:53:23 +02:00
|
|
|
namespace ShareeBike.Model.Message
|
2023-08-31 12:20:06 +02:00
|
|
|
{
|
|
|
|
public interface IMessage
|
|
|
|
{
|
|
|
|
void LongAlert(string message);
|
|
|
|
void ShortAlert(string message);
|
|
|
|
}
|
|
|
|
}
|