vassago/Models/Protocol.cs

14 lines
333 B
C#
Raw Normal View History

2023-06-01 00:03:23 -04:00
namespace vassago.Models;
using System;
2023-06-01 00:03:23 -04:00
using System.Collections.Generic;
using System.Threading.Tasks;
2023-06-01 00:03:23 -04:00
public class Protocol : Channel
{
2023-06-01 00:03:23 -04:00
//log in, log out, observe events?
//doesn't actually have to be a token, but it should be how an interface can find itself in the DB
public string ConnectionToken { get; set; }
}