mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
14 lines
309 B
C#
14 lines
309 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LibMpc
|
|
{
|
|
public class Constants
|
|
{
|
|
public static readonly string Ok = "OK";
|
|
public static readonly string Ack = "ACK";
|
|
|
|
public static readonly string FirstLinePrefix = "OK MPD ";
|
|
}
|
|
}
|