1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-06-20 01:57:53 +02:00
Files
Tranga/API/APIEndpointRecords/PushoverRecord.cs

13 lines
281 B
C#

namespace API.APIEndpointRecords;
public record PushoverRecord(string apptoken, string user)
{
public bool Validate()
{
if (apptoken == string.Empty)
return false;
if (user == string.Empty)
return false;
return true;
}
}