mirror of
https://github.com/openziti/desktop-edge-win.git
synced 2026-09-22 10:53:34 +00:00
17 lines
336 B
C#
17 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ZitiDesktopEdge.Models {
|
|
public class MessageCount {
|
|
|
|
public int Total { get; set; }
|
|
public string Message { get; set; }
|
|
public override string ToString() {
|
|
return Total + " " + Message;
|
|
}
|
|
}
|
|
}
|